Skip to content

Latest commit

 

History

History
103 lines (56 loc) · 2.56 KB

Account.md

File metadata and controls

103 lines (56 loc) · 2.56 KB

Account

Properties

Name Type Description Notes
Address string
Type Pointer to string [optional]
Metadata Pointer to map[string]interface{} [optional]

Methods

NewAccount

func NewAccount(address string, ) *Account

NewAccount instantiates a new Account 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

NewAccountWithDefaults

func NewAccountWithDefaults() *Account

NewAccountWithDefaults instantiates a new Account 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 *Account) GetAddress() string

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

GetAddressOk

func (o *Account) 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 *Account) SetAddress(v string)

SetAddress sets Address field to given value.

GetType

func (o *Account) GetType() string

GetType returns the Type field if non-nil, zero value otherwise.

GetTypeOk

func (o *Account) GetTypeOk() (*string, bool)

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

SetType

func (o *Account) SetType(v string)

SetType sets Type field to given value.

HasType

func (o *Account) HasType() bool

HasType returns a boolean if a field has been set.

GetMetadata

func (o *Account) GetMetadata() map[string]interface{}

GetMetadata returns the Metadata field if non-nil, zero value otherwise.

GetMetadataOk

func (o *Account) GetMetadataOk() (*map[string]interface{}, bool)

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

SetMetadata

func (o *Account) SetMetadata(v map[string]interface{})

SetMetadata sets Metadata field to given value.

HasMetadata

func (o *Account) HasMetadata() bool

HasMetadata returns a boolean if a field has been set.

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