Name | Type | Description | Notes |
---|---|---|---|
Success | bool | ||
Message | string | ||
Body | Pointer to InputBody | [optional] | |
Address | Pointer to string | [optional] | |
Data | Pointer to BalanceResponse | [optional] |
func NewBalanceAPIResponse(success bool, message string, ) *BalanceAPIResponse
NewBalanceAPIResponse instantiates a new BalanceAPIResponse 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
func NewBalanceAPIResponseWithDefaults() *BalanceAPIResponse
NewBalanceAPIResponseWithDefaults instantiates a new BalanceAPIResponse 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
func (o *BalanceAPIResponse) GetSuccess() bool
GetSuccess returns the Success field if non-nil, zero value otherwise.
func (o *BalanceAPIResponse) GetSuccessOk() (*bool, bool)
GetSuccessOk returns a tuple with the Success field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BalanceAPIResponse) SetSuccess(v bool)
SetSuccess sets Success field to given value.
func (o *BalanceAPIResponse) GetMessage() string
GetMessage returns the Message field if non-nil, zero value otherwise.
func (o *BalanceAPIResponse) 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.
func (o *BalanceAPIResponse) SetMessage(v string)
SetMessage sets Message field to given value.
func (o *BalanceAPIResponse) GetBody() InputBody
GetBody returns the Body field if non-nil, zero value otherwise.
func (o *BalanceAPIResponse) GetBodyOk() (*InputBody, bool)
GetBodyOk returns a tuple with the Body field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BalanceAPIResponse) SetBody(v InputBody)
SetBody sets Body field to given value.
func (o *BalanceAPIResponse) HasBody() bool
HasBody returns a boolean if a field has been set.
func (o *BalanceAPIResponse) GetAddress() string
GetAddress returns the Address field if non-nil, zero value otherwise.
func (o *BalanceAPIResponse) GetAddressOk() (*string, bool)
GetAddressOk returns a tuple with the Address field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *BalanceAPIResponse) SetAddress(v string)
SetAddress sets Address field to given value.
func (o *BalanceAPIResponse) HasAddress() bool
HasAddress returns a boolean if a field has been set.
func (o *BalanceAPIResponse) GetData() BalanceResponse
GetData returns the Data field if non-nil, zero value otherwise.
func (o *BalanceAPIResponse) GetDataOk() (*BalanceResponse, 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.
func (o *BalanceAPIResponse) SetData(v BalanceResponse)
SetData sets Data field to given value.
func (o *BalanceAPIResponse) HasData() bool
HasData returns a boolean if a field has been set.
[Back to Model list] [Back to API list] [Back to README]