Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.42 KB

Ewallet.md

File metadata and controls

51 lines (29 loc) · 1.42 KB

Ewallet

An object representing e-wallet details for invoices.

Properties

Name Type Required Description Examples
EwalletType EwalletType ☑️

Methods

NewEwallet

func NewEwallet(ewalletType EwalletType, ) *Ewallet

NewEwallet instantiates a new Ewallet 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

NewEwalletWithDefaults

func NewEwalletWithDefaults() *Ewallet

NewEwalletWithDefaults instantiates a new Ewallet 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

GetEwalletType

func (o *Ewallet) GetEwalletType() EwalletType

GetEwalletType returns the EwalletType field if non-nil, zero value otherwise.

GetEwalletTypeOk

func (o *Ewallet) GetEwalletTypeOk() (*EwalletType, bool)

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

SetEwalletType

func (o *Ewallet) SetEwalletType(v EwalletType)

SetEwalletType sets EwalletType field to given value.

[Back to README]