Skip to content

Latest commit

 

History

History
129 lines (70 loc) · 3.12 KB

CursorHrefs.md

File metadata and controls

129 lines (70 loc) · 3.12 KB

CursorHrefs

Properties

Name Type Description Notes
First string
Last Pointer to string [optional]
Previous Pointer to string [optional]
Next Pointer to string [optional]

Methods

NewCursorHrefs

func NewCursorHrefs(first string, ) *CursorHrefs

NewCursorHrefs instantiates a new CursorHrefs 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

NewCursorHrefsWithDefaults

func NewCursorHrefsWithDefaults() *CursorHrefs

NewCursorHrefsWithDefaults instantiates a new CursorHrefs 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

GetFirst

func (o *CursorHrefs) GetFirst() string

GetFirst returns the First field if non-nil, zero value otherwise.

GetFirstOk

func (o *CursorHrefs) GetFirstOk() (*string, bool)

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

SetFirst

func (o *CursorHrefs) SetFirst(v string)

SetFirst sets First field to given value.

GetLast

func (o *CursorHrefs) GetLast() string

GetLast returns the Last field if non-nil, zero value otherwise.

GetLastOk

func (o *CursorHrefs) GetLastOk() (*string, bool)

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

SetLast

func (o *CursorHrefs) SetLast(v string)

SetLast sets Last field to given value.

HasLast

func (o *CursorHrefs) HasLast() bool

HasLast returns a boolean if a field has been set.

GetPrevious

func (o *CursorHrefs) GetPrevious() string

GetPrevious returns the Previous field if non-nil, zero value otherwise.

GetPreviousOk

func (o *CursorHrefs) GetPreviousOk() (*string, bool)

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

SetPrevious

func (o *CursorHrefs) SetPrevious(v string)

SetPrevious sets Previous field to given value.

HasPrevious

func (o *CursorHrefs) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

GetNext

func (o *CursorHrefs) GetNext() string

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

GetNextOk

func (o *CursorHrefs) 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 *CursorHrefs) SetNext(v string)

SetNext sets Next field to given value.

HasNext

func (o *CursorHrefs) HasNext() bool

HasNext returns a boolean if a field has been set.

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