Struct google_monitoring3::ListNotificationChannelsResponse[][src]

pub struct ListNotificationChannelsResponse {
    pub next_page_token: Option<String>,
    pub notification_channels: Option<Vec<NotificationChannel>>,
}

The ListNotificationChannels response.

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 results that match the request. Use the value in the page_token field in a subsequent request to fetch the next set of results. If empty, all results have been returned.

The notification channels defined for the specified project.

Trait Implementations

impl Default for ListNotificationChannelsResponse
[src]

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

impl Clone for ListNotificationChannelsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListNotificationChannelsResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListNotificationChannelsResponse
[src]

Auto Trait Implementations