Skip to content

Latest commit

 

History

History
72 lines (39 loc) · 2.66 KB

TransactionMessageSignEIP191Destination.md

File metadata and controls

72 lines (39 loc) · 2.66 KB

TransactionMessageSignEIP191Destination

Properties

Name Type Description Notes
DestinationType TransactionDestinationType
Message string The raw data of the message to be signed, encoded in Base64 format.

Methods

NewTransactionMessageSignEIP191Destination

func NewTransactionMessageSignEIP191Destination(destinationType TransactionDestinationType, message string, ) *TransactionMessageSignEIP191Destination

NewTransactionMessageSignEIP191Destination instantiates a new TransactionMessageSignEIP191Destination 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

NewTransactionMessageSignEIP191DestinationWithDefaults

func NewTransactionMessageSignEIP191DestinationWithDefaults() *TransactionMessageSignEIP191Destination

NewTransactionMessageSignEIP191DestinationWithDefaults instantiates a new TransactionMessageSignEIP191Destination 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

GetDestinationType

func (o *TransactionMessageSignEIP191Destination) GetDestinationType() TransactionDestinationType

GetDestinationType returns the DestinationType field if non-nil, zero value otherwise.

GetDestinationTypeOk

func (o *TransactionMessageSignEIP191Destination) GetDestinationTypeOk() (*TransactionDestinationType, bool)

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

SetDestinationType

func (o *TransactionMessageSignEIP191Destination) SetDestinationType(v TransactionDestinationType)

SetDestinationType sets DestinationType field to given value.

GetMessage

func (o *TransactionMessageSignEIP191Destination) GetMessage() string

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

GetMessageOk

func (o *TransactionMessageSignEIP191Destination) 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 *TransactionMessageSignEIP191Destination) SetMessage(v string)

SetMessage sets Message field to given value.

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