Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.69 KB

TransferEth200Response.md

File metadata and controls

93 lines (50 loc) · 2.69 KB

TransferEth200Response

Properties

Name Type Description Notes
Status int64 The status code.
Message string The human-readable status message.
Result TransactionToSign

Methods

NewTransferEth200Response

func NewTransferEth200Response(status int64, message string, result TransactionToSign, ) *TransferEth200Response

NewTransferEth200Response instantiates a new TransferEth200Response 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

NewTransferEth200ResponseWithDefaults

func NewTransferEth200ResponseWithDefaults() *TransferEth200Response

NewTransferEth200ResponseWithDefaults instantiates a new TransferEth200Response 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

GetStatus

func (o *TransferEth200Response) GetStatus() int64

GetStatus returns the Status field if non-nil, zero value otherwise.

GetStatusOk

func (o *TransferEth200Response) GetStatusOk() (*int64, bool)

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

SetStatus

func (o *TransferEth200Response) SetStatus(v int64)

SetStatus sets Status field to given value.

GetMessage

func (o *TransferEth200Response) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *TransferEth200Response) GetMessageOk() (*string, bool)

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

SetMessage

func (o *TransferEth200Response) SetMessage(v string)

SetMessage sets Message field to given value.

GetResult

func (o *TransferEth200Response) GetResult() TransactionToSign

GetResult returns the Result field if non-nil, zero value otherwise.

GetResultOk

func (o *TransferEth200Response) GetResultOk() (*TransactionToSign, bool)

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

SetResult

func (o *TransferEth200Response) SetResult(v TransactionToSign)

SetResult sets Result field to given value.

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