Name | Type | Description | Notes |
---|---|---|---|
ApiVersion | string | Specifies the version of the API that incorporates this endpoint. | |
ReferenceId | string | Represents a unique identifier that serves as reference to the specific request which prompts a callback, e.g. Blockchain Events Subscription, Blockchain Automation, etc. | |
IdempotencyKey | string | Specifies a unique ID generated by the system and attached to each callback. It is used by the server to recognize consecutive requests with the same data with the purpose not to perform the same operation twice. | |
Data | TransactionRequestApprovalData |
func NewTransactionRequestApproval(apiVersion string, referenceId string, idempotencyKey string, data TransactionRequestApprovalData, ) *TransactionRequestApproval
NewTransactionRequestApproval instantiates a new TransactionRequestApproval 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 NewTransactionRequestApprovalWithDefaults() *TransactionRequestApproval
NewTransactionRequestApprovalWithDefaults instantiates a new TransactionRequestApproval 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 *TransactionRequestApproval) GetApiVersion() string
GetApiVersion returns the ApiVersion field if non-nil, zero value otherwise.
func (o *TransactionRequestApproval) GetApiVersionOk() (*string, bool)
GetApiVersionOk returns a tuple with the ApiVersion field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestApproval) SetApiVersion(v string)
SetApiVersion sets ApiVersion field to given value.
func (o *TransactionRequestApproval) GetReferenceId() string
GetReferenceId returns the ReferenceId field if non-nil, zero value otherwise.
func (o *TransactionRequestApproval) GetReferenceIdOk() (*string, bool)
GetReferenceIdOk returns a tuple with the ReferenceId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestApproval) SetReferenceId(v string)
SetReferenceId sets ReferenceId field to given value.
func (o *TransactionRequestApproval) GetIdempotencyKey() string
GetIdempotencyKey returns the IdempotencyKey field if non-nil, zero value otherwise.
func (o *TransactionRequestApproval) GetIdempotencyKeyOk() (*string, bool)
GetIdempotencyKeyOk returns a tuple with the IdempotencyKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestApproval) SetIdempotencyKey(v string)
SetIdempotencyKey sets IdempotencyKey field to given value.
func (o *TransactionRequestApproval) GetData() TransactionRequestApprovalData
GetData returns the Data field if non-nil, zero value otherwise.
func (o *TransactionRequestApproval) GetDataOk() (*TransactionRequestApprovalData, bool)
GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionRequestApproval) SetData(v TransactionRequestApprovalData)
SetData sets Data field to given value.