Skip to content

Latest commit

 

History

History
207 lines (112 loc) · 5.76 KB

File metadata and controls

207 lines (112 loc) · 5.76 KB

GetApplicationsResponse

Properties

Name Type Description Notes
Count int64
TotalPages int64
SchemaVersion int64
Links ApplicationLinks
Results []ApplicationsResults
Next Pointer to NullableString [optional]
Previous Pointer to NullableString [optional]

Methods

NewGetApplicationsResponse

func NewGetApplicationsResponse(count int64, totalPages int64, schemaVersion int64, links ApplicationLinks, results []ApplicationsResults, ) *GetApplicationsResponse

NewGetApplicationsResponse instantiates a new GetApplicationsResponse 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

NewGetApplicationsResponseWithDefaults

func NewGetApplicationsResponseWithDefaults() *GetApplicationsResponse

NewGetApplicationsResponseWithDefaults instantiates a new GetApplicationsResponse 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

GetCount

func (o *GetApplicationsResponse) GetCount() int64

GetCount returns the Count field if non-nil, zero value otherwise.

GetCountOk

func (o *GetApplicationsResponse) GetCountOk() (*int64, bool)

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

SetCount

func (o *GetApplicationsResponse) SetCount(v int64)

SetCount sets Count field to given value.

GetTotalPages

func (o *GetApplicationsResponse) GetTotalPages() int64

GetTotalPages returns the TotalPages field if non-nil, zero value otherwise.

GetTotalPagesOk

func (o *GetApplicationsResponse) GetTotalPagesOk() (*int64, bool)

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

SetTotalPages

func (o *GetApplicationsResponse) SetTotalPages(v int64)

SetTotalPages sets TotalPages field to given value.

GetSchemaVersion

func (o *GetApplicationsResponse) GetSchemaVersion() int64

GetSchemaVersion returns the SchemaVersion field if non-nil, zero value otherwise.

GetSchemaVersionOk

func (o *GetApplicationsResponse) GetSchemaVersionOk() (*int64, bool)

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

SetSchemaVersion

func (o *GetApplicationsResponse) SetSchemaVersion(v int64)

SetSchemaVersion sets SchemaVersion field to given value.

GetLinks

func (o *GetApplicationsResponse) GetLinks() ApplicationLinks

GetLinks returns the Links field if non-nil, zero value otherwise.

GetLinksOk

func (o *GetApplicationsResponse) GetLinksOk() (*ApplicationLinks, 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.

SetLinks

func (o *GetApplicationsResponse) SetLinks(v ApplicationLinks)

SetLinks sets Links field to given value.

GetResults

func (o *GetApplicationsResponse) GetResults() []ApplicationsResults

GetResults returns the Results field if non-nil, zero value otherwise.

GetResultsOk

func (o *GetApplicationsResponse) GetResultsOk() (*[]ApplicationsResults, bool)

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

SetResults

func (o *GetApplicationsResponse) SetResults(v []ApplicationsResults)

SetResults sets Results field to given value.

GetNext

func (o *GetApplicationsResponse) GetNext() string

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

GetNextOk

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

SetNext sets Next field to given value.

HasNext

func (o *GetApplicationsResponse) HasNext() bool

HasNext returns a boolean if a field has been set.

SetNextNil

func (o *GetApplicationsResponse) SetNextNil(b bool)

SetNextNil sets the value for Next to be an explicit nil

UnsetNext

func (o *GetApplicationsResponse) UnsetNext()

UnsetNext ensures that no value is present for Next, not even an explicit nil

GetPrevious

func (o *GetApplicationsResponse) GetPrevious() string

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

GetPreviousOk

func (o *GetApplicationsResponse) 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 *GetApplicationsResponse) SetPrevious(v string)

SetPrevious sets Previous field to given value.

HasPrevious

func (o *GetApplicationsResponse) HasPrevious() bool

HasPrevious returns a boolean if a field has been set.

SetPreviousNil

func (o *GetApplicationsResponse) SetPreviousNil(b bool)

SetPreviousNil sets the value for Previous to be an explicit nil

UnsetPrevious

func (o *GetApplicationsResponse) UnsetPrevious()

UnsetPrevious ensures that no value is present for Previous, not even an explicit nil

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