Struct google_partners2::ListOffersHistoryResponse[][src]

pub struct ListOffersHistoryResponse {
    pub next_page_token: Option<String>,
    pub showing_entire_company: Option<bool>,
    pub can_show_entire_company: Option<bool>,
    pub response_metadata: Option<ResponseMetadata>,
    pub offers: Option<Vec<HistoricalOffer>>,
    pub total_results: Option<i32>,
}

Response for ListOfferHistory.

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

Supply this token in a ListOffersHistoryRequest to retrieve the next page.

True if this response is showing entire company history.

True if the user has the option to show entire company history.

Current response metadata.

Historical offers meeting request.

Number of results across all pages.

Trait Implementations

impl Default for ListOffersHistoryResponse
[src]

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

impl Clone for ListOffersHistoryResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListOffersHistoryResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListOffersHistoryResponse
[src]

Auto Trait Implementations