Show / Hide Table of Contents

Class ListNotificationChannelDescriptorsResponse

The ListNotificationChannelDescriptors response.

Inheritance
System.Object
ListNotificationChannelDescriptorsResponse
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Monitoring.v3.Data
Assembly: Google.Apis.Monitoring.v3.dll
Syntax
public class ListNotificationChannelDescriptorsResponse : IDirectResponseSchema

Properties

ChannelDescriptors

The monitored resource descriptors supported for the specified project, optionally filtered.

Declaration
[JsonProperty("channelDescriptors")]
public virtual IList<NotificationChannelDescriptor> ChannelDescriptors { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<NotificationChannelDescriptor>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NextPageToken

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.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top