Skip to content

Latest commit

 

History

History
224 lines (119 loc) · 7.33 KB

AddressTokensTransactionConfirmedToken.md

File metadata and controls

224 lines (119 loc) · 7.33 KB

AddressTokensTransactionConfirmedToken

Properties

Name Type Description Notes
Name string Specifies the name of the token.
Symbol string Specifies an identifier of the token, where up to five alphanumeric characters can be used for it.
Decimals Pointer to string Defines how many decimals can be used to break the token. [optional]
Amount string Defines the amount of tokens sent with the confirmed transaction.
ContractAddress string Defines the address of the contract.
TokenId string Specifies the ID of the token.
PropertyId string Defines the ID of the property for Omni Layer.
TransactionType string Defines the type of the transaction.
CreatedByTransactionId string The transaction ID used to create the token.

Methods

NewAddressTokensTransactionConfirmedToken

func NewAddressTokensTransactionConfirmedToken(name string, symbol string, amount string, contractAddress string, tokenId string, propertyId string, transactionType string, createdByTransactionId string, ) *AddressTokensTransactionConfirmedToken

NewAddressTokensTransactionConfirmedToken instantiates a new AddressTokensTransactionConfirmedToken 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

NewAddressTokensTransactionConfirmedTokenWithDefaults

func NewAddressTokensTransactionConfirmedTokenWithDefaults() *AddressTokensTransactionConfirmedToken

NewAddressTokensTransactionConfirmedTokenWithDefaults instantiates a new AddressTokensTransactionConfirmedToken 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

GetName

func (o *AddressTokensTransactionConfirmedToken) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *AddressTokensTransactionConfirmedToken) GetNameOk() (*string, bool)

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

SetName

func (o *AddressTokensTransactionConfirmedToken) SetName(v string)

SetName sets Name field to given value.

GetSymbol

func (o *AddressTokensTransactionConfirmedToken) GetSymbol() string

GetSymbol returns the Symbol field if non-nil, zero value otherwise.

GetSymbolOk

func (o *AddressTokensTransactionConfirmedToken) GetSymbolOk() (*string, bool)

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

SetSymbol

func (o *AddressTokensTransactionConfirmedToken) SetSymbol(v string)

SetSymbol sets Symbol field to given value.

GetDecimals

func (o *AddressTokensTransactionConfirmedToken) GetDecimals() string

GetDecimals returns the Decimals field if non-nil, zero value otherwise.

GetDecimalsOk

func (o *AddressTokensTransactionConfirmedToken) GetDecimalsOk() (*string, bool)

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

SetDecimals

func (o *AddressTokensTransactionConfirmedToken) SetDecimals(v string)

SetDecimals sets Decimals field to given value.

HasDecimals

func (o *AddressTokensTransactionConfirmedToken) HasDecimals() bool

HasDecimals returns a boolean if a field has been set.

GetAmount

func (o *AddressTokensTransactionConfirmedToken) GetAmount() string

GetAmount returns the Amount field if non-nil, zero value otherwise.

GetAmountOk

func (o *AddressTokensTransactionConfirmedToken) GetAmountOk() (*string, bool)

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

SetAmount

func (o *AddressTokensTransactionConfirmedToken) SetAmount(v string)

SetAmount sets Amount field to given value.

GetContractAddress

func (o *AddressTokensTransactionConfirmedToken) GetContractAddress() string

GetContractAddress returns the ContractAddress field if non-nil, zero value otherwise.

GetContractAddressOk

func (o *AddressTokensTransactionConfirmedToken) GetContractAddressOk() (*string, bool)

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

SetContractAddress

func (o *AddressTokensTransactionConfirmedToken) SetContractAddress(v string)

SetContractAddress sets ContractAddress field to given value.

GetTokenId

func (o *AddressTokensTransactionConfirmedToken) GetTokenId() string

GetTokenId returns the TokenId field if non-nil, zero value otherwise.

GetTokenIdOk

func (o *AddressTokensTransactionConfirmedToken) GetTokenIdOk() (*string, bool)

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

SetTokenId

func (o *AddressTokensTransactionConfirmedToken) SetTokenId(v string)

SetTokenId sets TokenId field to given value.

GetPropertyId

func (o *AddressTokensTransactionConfirmedToken) GetPropertyId() string

GetPropertyId returns the PropertyId field if non-nil, zero value otherwise.

GetPropertyIdOk

func (o *AddressTokensTransactionConfirmedToken) GetPropertyIdOk() (*string, bool)

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

SetPropertyId

func (o *AddressTokensTransactionConfirmedToken) SetPropertyId(v string)

SetPropertyId sets PropertyId field to given value.

GetTransactionType

func (o *AddressTokensTransactionConfirmedToken) GetTransactionType() string

GetTransactionType returns the TransactionType field if non-nil, zero value otherwise.

GetTransactionTypeOk

func (o *AddressTokensTransactionConfirmedToken) GetTransactionTypeOk() (*string, bool)

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

SetTransactionType

func (o *AddressTokensTransactionConfirmedToken) SetTransactionType(v string)

SetTransactionType sets TransactionType field to given value.

GetCreatedByTransactionId

func (o *AddressTokensTransactionConfirmedToken) GetCreatedByTransactionId() string

GetCreatedByTransactionId returns the CreatedByTransactionId field if non-nil, zero value otherwise.

GetCreatedByTransactionIdOk

func (o *AddressTokensTransactionConfirmedToken) GetCreatedByTransactionIdOk() (*string, bool)

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

SetCreatedByTransactionId

func (o *AddressTokensTransactionConfirmedToken) SetCreatedByTransactionId(v string)

SetCreatedByTransactionId sets CreatedByTransactionId field to given value.

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