Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 3.09 KB

PaginatedOrganizationView.md

File metadata and controls

93 lines (50 loc) · 3.09 KB

PaginatedOrganizationView

Properties

Name Type Description Notes
Links []Link List of one or more Uniform Resource Locators (URLs) that point to API sub-resources, related API resources, or both. RFC 5988 outlines these relationships. [readonly]
Results []ApiOrganizationView List of returned documents that MongoDB Cloud providers when completing this request. [readonly]
TotalCount int32 Number of documents returned in this response. [readonly]

Methods

NewPaginatedOrganizationView

func NewPaginatedOrganizationView(links []Link, results []ApiOrganizationView, totalCount int32, ) *PaginatedOrganizationView

NewPaginatedOrganizationView instantiates a new PaginatedOrganizationView 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

NewPaginatedOrganizationViewWithDefaults

func NewPaginatedOrganizationViewWithDefaults() *PaginatedOrganizationView

NewPaginatedOrganizationViewWithDefaults instantiates a new PaginatedOrganizationView 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

GetLinks

func (o *PaginatedOrganizationView) GetLinks() []Link

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

GetLinksOk

func (o *PaginatedOrganizationView) GetLinksOk() (*[]Link, 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 *PaginatedOrganizationView) SetLinks(v []Link)

SetLinks sets Links field to given value.

GetResults

func (o *PaginatedOrganizationView) GetResults() []ApiOrganizationView

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

GetResultsOk

func (o *PaginatedOrganizationView) GetResultsOk() (*[]ApiOrganizationView, 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 *PaginatedOrganizationView) SetResults(v []ApiOrganizationView)

SetResults sets Results field to given value.

GetTotalCount

func (o *PaginatedOrganizationView) GetTotalCount() int32

GetTotalCount returns the TotalCount field if non-nil, zero value otherwise.

GetTotalCountOk

func (o *PaginatedOrganizationView) GetTotalCountOk() (*int32, bool)

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

SetTotalCount

func (o *PaginatedOrganizationView) SetTotalCount(v int32)

SetTotalCount sets TotalCount field to given value.

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