Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 4.07 KB

BroadcastTransactionFailDataItem.md

File metadata and controls

114 lines (61 loc) · 4.07 KB

BroadcastTransactionFailDataItem

Properties

Name Type Description Notes
Blockchain string Represents the specific blockchain protocol name, e.g. Ethereum, Bitcoin, etc.
Network string Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet", "ropsten", "rinkeby" are test networks.
TransactionId string Defines the unique ID of the specific transaction, i.e. its identification number.
ErrorMessage string Represents the error message received for the transaction.

Methods

NewBroadcastTransactionFailDataItem

func NewBroadcastTransactionFailDataItem(blockchain string, network string, transactionId string, errorMessage string, ) *BroadcastTransactionFailDataItem

NewBroadcastTransactionFailDataItem instantiates a new BroadcastTransactionFailDataItem 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

NewBroadcastTransactionFailDataItemWithDefaults

func NewBroadcastTransactionFailDataItemWithDefaults() *BroadcastTransactionFailDataItem

NewBroadcastTransactionFailDataItemWithDefaults instantiates a new BroadcastTransactionFailDataItem 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

GetBlockchain

func (o *BroadcastTransactionFailDataItem) GetBlockchain() string

GetBlockchain returns the Blockchain field if non-nil, zero value otherwise.

GetBlockchainOk

func (o *BroadcastTransactionFailDataItem) GetBlockchainOk() (*string, bool)

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

SetBlockchain

func (o *BroadcastTransactionFailDataItem) SetBlockchain(v string)

SetBlockchain sets Blockchain field to given value.

GetNetwork

func (o *BroadcastTransactionFailDataItem) GetNetwork() string

GetNetwork returns the Network field if non-nil, zero value otherwise.

GetNetworkOk

func (o *BroadcastTransactionFailDataItem) GetNetworkOk() (*string, bool)

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

SetNetwork

func (o *BroadcastTransactionFailDataItem) SetNetwork(v string)

SetNetwork sets Network field to given value.

GetTransactionId

func (o *BroadcastTransactionFailDataItem) GetTransactionId() string

GetTransactionId returns the TransactionId field if non-nil, zero value otherwise.

GetTransactionIdOk

func (o *BroadcastTransactionFailDataItem) GetTransactionIdOk() (*string, bool)

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

SetTransactionId

func (o *BroadcastTransactionFailDataItem) SetTransactionId(v string)

SetTransactionId sets TransactionId field to given value.

GetErrorMessage

func (o *BroadcastTransactionFailDataItem) GetErrorMessage() string

GetErrorMessage returns the ErrorMessage field if non-nil, zero value otherwise.

GetErrorMessageOk

func (o *BroadcastTransactionFailDataItem) GetErrorMessageOk() (*string, bool)

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

SetErrorMessage

func (o *BroadcastTransactionFailDataItem) SetErrorMessage(v string)

SetErrorMessage sets ErrorMessage field to given value.

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