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. |
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
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
func (o *BroadcastTransactionFailDataItem) GetBlockchain() string
GetBlockchain returns the Blockchain field if non-nil, zero value otherwise.
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.
func (o *BroadcastTransactionFailDataItem) SetBlockchain(v string)
SetBlockchain sets Blockchain field to given value.
func (o *BroadcastTransactionFailDataItem) GetNetwork() string
GetNetwork returns the Network field if non-nil, zero value otherwise.
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.
func (o *BroadcastTransactionFailDataItem) SetNetwork(v string)
SetNetwork sets Network field to given value.
func (o *BroadcastTransactionFailDataItem) GetTransactionId() string
GetTransactionId returns the TransactionId field if non-nil, zero value otherwise.
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.
func (o *BroadcastTransactionFailDataItem) SetTransactionId(v string)
SetTransactionId sets TransactionId field to given value.
func (o *BroadcastTransactionFailDataItem) GetErrorMessage() string
GetErrorMessage returns the ErrorMessage field if non-nil, zero value otherwise.
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.
func (o *BroadcastTransactionFailDataItem) SetErrorMessage(v string)
SetErrorMessage sets ErrorMessage field to given value.