Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 3.96 KB

TransactionRequestApproval.md

File metadata and controls

114 lines (61 loc) · 3.96 KB

TransactionRequestApproval

Properties

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

Methods

NewTransactionRequestApproval

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

NewTransactionRequestApprovalWithDefaults

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

GetApiVersion

func (o *TransactionRequestApproval) GetApiVersion() string

GetApiVersion returns the ApiVersion field if non-nil, zero value otherwise.

GetApiVersionOk

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.

SetApiVersion

func (o *TransactionRequestApproval) SetApiVersion(v string)

SetApiVersion sets ApiVersion field to given value.

GetReferenceId

func (o *TransactionRequestApproval) GetReferenceId() string

GetReferenceId returns the ReferenceId field if non-nil, zero value otherwise.

GetReferenceIdOk

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.

SetReferenceId

func (o *TransactionRequestApproval) SetReferenceId(v string)

SetReferenceId sets ReferenceId field to given value.

GetIdempotencyKey

func (o *TransactionRequestApproval) GetIdempotencyKey() string

GetIdempotencyKey returns the IdempotencyKey field if non-nil, zero value otherwise.

GetIdempotencyKeyOk

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.

SetIdempotencyKey

func (o *TransactionRequestApproval) SetIdempotencyKey(v string)

SetIdempotencyKey sets IdempotencyKey field to given value.

GetData

func (o *TransactionRequestApproval) GetData() TransactionRequestApprovalData

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

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.

SetData

func (o *TransactionRequestApproval) SetData(v TransactionRequestApprovalData)

SetData sets Data field to given value.

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