Struct google_alertcenter1_beta1::ListAlertsResponse[][src]

pub struct ListAlertsResponse {
    pub next_page_token: Option<String>,
    pub alerts: Option<Vec<Alert>>,
}

Response message for an alert listing request.

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

If not empty, indicates that there may be more alerts that match the request; this value can be passed in a new ListAlertsRequest to get the next page of values.

The list of alerts.

Trait Implementations

impl Default for ListAlertsResponse
[src]

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

impl Clone for ListAlertsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListAlertsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListAlertsResponse
[src]

Auto Trait Implementations