Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.79 KB

BaseContractCallSource.md

File metadata and controls

93 lines (50 loc) · 2.79 KB

BaseContractCallSource

Properties

Name Type Description Notes
SourceType ContractCallSourceType
WalletId string The wallet ID.
Address string The wallet address.

Methods

NewBaseContractCallSource

func NewBaseContractCallSource(sourceType ContractCallSourceType, walletId string, address string, ) *BaseContractCallSource

NewBaseContractCallSource instantiates a new BaseContractCallSource 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

NewBaseContractCallSourceWithDefaults

func NewBaseContractCallSourceWithDefaults() *BaseContractCallSource

NewBaseContractCallSourceWithDefaults instantiates a new BaseContractCallSource 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

GetSourceType

func (o *BaseContractCallSource) GetSourceType() ContractCallSourceType

GetSourceType returns the SourceType field if non-nil, zero value otherwise.

GetSourceTypeOk

func (o *BaseContractCallSource) GetSourceTypeOk() (*ContractCallSourceType, bool)

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

SetSourceType

func (o *BaseContractCallSource) SetSourceType(v ContractCallSourceType)

SetSourceType sets SourceType field to given value.

GetWalletId

func (o *BaseContractCallSource) GetWalletId() string

GetWalletId returns the WalletId field if non-nil, zero value otherwise.

GetWalletIdOk

func (o *BaseContractCallSource) GetWalletIdOk() (*string, bool)

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

SetWalletId

func (o *BaseContractCallSource) SetWalletId(v string)

SetWalletId sets WalletId field to given value.

GetAddress

func (o *BaseContractCallSource) GetAddress() string

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

GetAddressOk

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

SetAddress sets Address field to given value.

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