Returns an array of Transaction Objects. Returns empty array when there is no result.
Name | Type | Required | Description | Examples |
---|---|---|---|---|
HasMore | bool | ☑️ | Indicates whether there are more items to be queried with `after_id` of the last item from the current result. Use the `links` to follow to the next result. | |
Links | Pointer to LinkItem[] | The links to the next page based on LinkItem if there is next result. | ||
Data | TransactionResponse[] | ☑️ |
func NewTransactionsResponse(hasMore bool, data []TransactionResponse, ) *TransactionsResponse
NewTransactionsResponse instantiates a new TransactionsResponse 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 NewTransactionsResponseWithDefaults() *TransactionsResponse
NewTransactionsResponseWithDefaults instantiates a new TransactionsResponse 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 *TransactionsResponse) GetHasMore() bool
GetHasMore returns the HasMore field if non-nil, zero value otherwise.
func (o *TransactionsResponse) 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.
func (o *TransactionsResponse) SetHasMore(v bool)
SetHasMore sets HasMore field to given value.
func (o *TransactionsResponse) GetLinks() []LinkItem
GetLinks returns the Links field if non-nil, zero value otherwise.
func (o *TransactionsResponse) GetLinksOk() (*[]LinkItem, bool)
GetLinksOk returns a tuple with the Links field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *TransactionsResponse) SetLinks(v []LinkItem)
SetLinks sets Links field to given value.
func (o *TransactionsResponse) HasLinks() bool
HasLinks returns a boolean if a field has been set.
func (o *TransactionsResponse) GetData() []TransactionResponse
GetData returns the Data field if non-nil, zero value otherwise.
func (o *TransactionsResponse) GetDataOk() (*[]TransactionResponse, 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 *TransactionsResponse) SetData(v []TransactionResponse)
SetData sets Data field to given value.