Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.76 KB

ListDepositsResponse.md

File metadata and controls

93 lines (50 loc) · 2.76 KB

ListDepositsResponse

Properties

Name Type Description Notes
Cursor string Generated cursor returned by previous query
Remaining int32 Remaining results flag. 1: there are remaining results matching this query, 0: no remaining results
Result []Deposit Deposits matching query parameters

Methods

NewListDepositsResponse

func NewListDepositsResponse(cursor string, remaining int32, result []Deposit, ) *ListDepositsResponse

NewListDepositsResponse instantiates a new ListDepositsResponse 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

NewListDepositsResponseWithDefaults

func NewListDepositsResponseWithDefaults() *ListDepositsResponse

NewListDepositsResponseWithDefaults instantiates a new ListDepositsResponse 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

GetCursor

func (o *ListDepositsResponse) GetCursor() string

GetCursor returns the Cursor field if non-nil, zero value otherwise.

GetCursorOk

func (o *ListDepositsResponse) GetCursorOk() (*string, bool)

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

SetCursor

func (o *ListDepositsResponse) SetCursor(v string)

SetCursor sets Cursor field to given value.

GetRemaining

func (o *ListDepositsResponse) GetRemaining() int32

GetRemaining returns the Remaining field if non-nil, zero value otherwise.

GetRemainingOk

func (o *ListDepositsResponse) GetRemainingOk() (*int32, bool)

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

SetRemaining

func (o *ListDepositsResponse) SetRemaining(v int32)

SetRemaining sets Remaining field to given value.

GetResult

func (o *ListDepositsResponse) GetResult() []Deposit

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

GetResultOk

func (o *ListDepositsResponse) GetResultOk() (*[]Deposit, 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 *ListDepositsResponse) SetResult(v []Deposit)

SetResult sets Result field to given value.

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