Struct google_cloudresourcemanager1::SearchOrganizationsResponse[][src]

pub struct SearchOrganizationsResponse {
    pub next_page_token: Option<String>,
    pub organizations: Option<Vec<Organization>>,
}

The response returned from the SearchOrganizations method.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A pagination token to be used to retrieve the next page of results. If the result is too large to fit within the page size specified in the request, this field will be set with a token that can be used to fetch the next page of results. If this field is empty, it indicates that this response contains the last page of results.

The list of Organizations that matched the search query, possibly paginated.

Trait Implementations

impl Default for SearchOrganizationsResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for SearchOrganizationsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SearchOrganizationsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for SearchOrganizationsResponse
[src]

Auto Trait Implementations