Skip to content

Latest commit

 

History

History
77 lines (42 loc) · 2.2 KB

ListPartitionsResponse.md

File metadata and controls

77 lines (42 loc) · 2.2 KB

ListPartitionsResponse

Properties

Name Type Description Notes
Data []Partition List of partitions.
Next Pointer to string Next continuation token. [optional]

Methods

NewListPartitionsResponse

func NewListPartitionsResponse(data []Partition, ) *ListPartitionsResponse

NewListPartitionsResponse instantiates a new ListPartitionsResponse 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

NewListPartitionsResponseWithDefaults

func NewListPartitionsResponseWithDefaults() *ListPartitionsResponse

NewListPartitionsResponseWithDefaults instantiates a new ListPartitionsResponse 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

GetData

func (o *ListPartitionsResponse) GetData() []Partition

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

GetDataOk

func (o *ListPartitionsResponse) GetDataOk() (*[]Partition, 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 *ListPartitionsResponse) SetData(v []Partition)

SetData sets Data field to given value.

GetNext

func (o *ListPartitionsResponse) GetNext() string

GetNext returns the Next field if non-nil, zero value otherwise.

GetNextOk

func (o *ListPartitionsResponse) GetNextOk() (*string, bool)

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

SetNext

func (o *ListPartitionsResponse) SetNext(v string)

SetNext sets Next field to given value.

HasNext

func (o *ListPartitionsResponse) HasNext() bool

HasNext returns a boolean if a field has been set.

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