Skip to content

Latest commit

 

History

History
170 lines (93 loc) · 4.98 KB

GetTransfersResponse.md

File metadata and controls

170 lines (93 loc) · 4.98 KB

GetTransfersResponse

Properties

Name Type Description Notes
HasMore bool Indicates if there are more pages to be requested
Object string Object type, in this case is list
NextPageUrl Pointer to NullableString URL of the next page. [optional]
PreviousPageUrl Pointer to NullableString Url of the previous page. [optional]
Data Pointer to []TransfersResponse Transfers [optional]

Methods

NewGetTransfersResponse

func NewGetTransfersResponse(hasMore bool, object string, ) *GetTransfersResponse

NewGetTransfersResponse instantiates a new GetTransfersResponse 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

NewGetTransfersResponseWithDefaults

func NewGetTransfersResponseWithDefaults() *GetTransfersResponse

NewGetTransfersResponseWithDefaults instantiates a new GetTransfersResponse 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

GetHasMore

func (o *GetTransfersResponse) GetHasMore() bool

GetHasMore returns the HasMore field if non-nil, zero value otherwise.

GetHasMoreOk

func (o *GetTransfersResponse) GetHasMoreOk() (*bool, bool)

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

SetHasMore

func (o *GetTransfersResponse) SetHasMore(v bool)

SetHasMore sets HasMore field to given value.

GetObject

func (o *GetTransfersResponse) GetObject() string

GetObject returns the Object field if non-nil, zero value otherwise.

GetObjectOk

func (o *GetTransfersResponse) GetObjectOk() (*string, bool)

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

SetObject

func (o *GetTransfersResponse) SetObject(v string)

SetObject sets Object field to given value.

GetNextPageUrl

func (o *GetTransfersResponse) GetNextPageUrl() string

GetNextPageUrl returns the NextPageUrl field if non-nil, zero value otherwise.

GetNextPageUrlOk

func (o *GetTransfersResponse) GetNextPageUrlOk() (*string, bool)

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

SetNextPageUrl

func (o *GetTransfersResponse) SetNextPageUrl(v string)

SetNextPageUrl sets NextPageUrl field to given value.

HasNextPageUrl

func (o *GetTransfersResponse) HasNextPageUrl() bool

HasNextPageUrl returns a boolean if a field has been set.

SetNextPageUrlNil

func (o *GetTransfersResponse) SetNextPageUrlNil(b bool)

SetNextPageUrlNil sets the value for NextPageUrl to be an explicit nil

UnsetNextPageUrl

func (o *GetTransfersResponse) UnsetNextPageUrl()

UnsetNextPageUrl ensures that no value is present for NextPageUrl, not even an explicit nil

GetPreviousPageUrl

func (o *GetTransfersResponse) GetPreviousPageUrl() string

GetPreviousPageUrl returns the PreviousPageUrl field if non-nil, zero value otherwise.

GetPreviousPageUrlOk

func (o *GetTransfersResponse) GetPreviousPageUrlOk() (*string, bool)

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

SetPreviousPageUrl

func (o *GetTransfersResponse) SetPreviousPageUrl(v string)

SetPreviousPageUrl sets PreviousPageUrl field to given value.

HasPreviousPageUrl

func (o *GetTransfersResponse) HasPreviousPageUrl() bool

HasPreviousPageUrl returns a boolean if a field has been set.

SetPreviousPageUrlNil

func (o *GetTransfersResponse) SetPreviousPageUrlNil(b bool)

SetPreviousPageUrlNil sets the value for PreviousPageUrl to be an explicit nil

UnsetPreviousPageUrl

func (o *GetTransfersResponse) UnsetPreviousPageUrl()

UnsetPreviousPageUrl ensures that no value is present for PreviousPageUrl, not even an explicit nil

GetData

func (o *GetTransfersResponse) GetData() []TransfersResponse

GetData returns the Data field if non-nil, zero value otherwise.

GetDataOk

func (o *GetTransfersResponse) GetDataOk() (*[]TransfersResponse, 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.

SetData

func (o *GetTransfersResponse) SetData(v []TransfersResponse)

SetData sets Data field to given value.

HasData

func (o *GetTransfersResponse) HasData() bool

HasData returns a boolean if a field has been set.

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