Skip to content

Latest commit

 

History

History
51 lines (29 loc) · 1.31 KB

Balance.md

File metadata and controls

51 lines (29 loc) · 1.31 KB

Balance

The balance remaining in your account

Properties

Name Type Required Description Examples
Balance float32 ☑️

Methods

NewBalance

func NewBalance(balance float32, ) *Balance

NewBalance instantiates a new Balance 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

NewBalanceWithDefaults

func NewBalanceWithDefaults() *Balance

NewBalanceWithDefaults instantiates a new Balance 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

GetBalance

func (o *Balance) GetBalance() float32

GetBalance returns the Balance field if non-nil, zero value otherwise.

GetBalanceOk

func (o *Balance) GetBalanceOk() (*float32, bool)

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

SetBalance

func (o *Balance) SetBalance(v float32)

SetBalance sets Balance field to given value.

[Back to README]