Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 2.83 KB

AddressInfo.md

File metadata and controls

114 lines (61 loc) · 2.83 KB

AddressInfo

Properties

Name Type Description Notes
Address string
PublicKey string
Group int32
Path string

Methods

NewAddressInfo

func NewAddressInfo(address string, publicKey string, group int32, path string, ) *AddressInfo

NewAddressInfo instantiates a new AddressInfo object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed

NewAddressInfoWithDefaults

func NewAddressInfoWithDefaults() *AddressInfo

NewAddressInfoWithDefaults instantiates a new AddressInfo object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set

GetAddress

func (o *AddressInfo) GetAddress() string

GetAddress returns the Address field if non-nil, zero value otherwise.

GetAddressOk

func (o *AddressInfo) GetAddressOk() (*string, bool)

GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetAddress

func (o *AddressInfo) SetAddress(v string)

SetAddress sets Address field to given value.

GetPublicKey

func (o *AddressInfo) GetPublicKey() string

GetPublicKey returns the PublicKey field if non-nil, zero value otherwise.

GetPublicKeyOk

func (o *AddressInfo) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPublicKey

func (o *AddressInfo) SetPublicKey(v string)

SetPublicKey sets PublicKey field to given value.

GetGroup

func (o *AddressInfo) GetGroup() int32

GetGroup returns the Group field if non-nil, zero value otherwise.

GetGroupOk

func (o *AddressInfo) GetGroupOk() (*int32, bool)

GetGroupOk returns a tuple with the Group field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetGroup

func (o *AddressInfo) SetGroup(v int32)

SetGroup sets Group field to given value.

GetPath

func (o *AddressInfo) GetPath() string

GetPath returns the Path field if non-nil, zero value otherwise.

GetPathOk

func (o *AddressInfo) GetPathOk() (*string, bool)

GetPathOk returns a tuple with the Path field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPath

func (o *AddressInfo) SetPath(v string)

SetPath sets Path field to given value.

[Back to Model list] [Back to API list] [Back to README]