Skip to content

Latest commit

 

History

History
102 lines (57 loc) · 2.84 KB

Page.md

File metadata and controls

102 lines (57 loc) · 2.84 KB

Page

Properties

Name Type Description Notes
NextPageUrl Pointer to NullableString URL of the next page. [optional]
PreviousPageUrl Pointer to NullableString Url of the previous page. [optional]

Methods

NewPage

func NewPage() *Page

NewPage instantiates a new Page 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

NewPageWithDefaults

func NewPageWithDefaults() *Page

NewPageWithDefaults instantiates a new Page 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

GetNextPageUrl

func (o *Page) GetNextPageUrl() string

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

GetNextPageUrlOk

func (o *Page) 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 *Page) SetNextPageUrl(v string)

SetNextPageUrl sets NextPageUrl field to given value.

HasNextPageUrl

func (o *Page) HasNextPageUrl() bool

HasNextPageUrl returns a boolean if a field has been set.

SetNextPageUrlNil

func (o *Page) SetNextPageUrlNil(b bool)

SetNextPageUrlNil sets the value for NextPageUrl to be an explicit nil

UnsetNextPageUrl

func (o *Page) UnsetNextPageUrl()

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

GetPreviousPageUrl

func (o *Page) GetPreviousPageUrl() string

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

GetPreviousPageUrlOk

func (o *Page) 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 *Page) SetPreviousPageUrl(v string)

SetPreviousPageUrl sets PreviousPageUrl field to given value.

HasPreviousPageUrl

func (o *Page) HasPreviousPageUrl() bool

HasPreviousPageUrl returns a boolean if a field has been set.

SetPreviousPageUrlNil

func (o *Page) SetPreviousPageUrlNil(b bool)

SetPreviousPageUrlNil sets the value for PreviousPageUrl to be an explicit nil

UnsetPreviousPageUrl

func (o *Page) UnsetPreviousPageUrl()

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

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