Show / Hide Table of Contents

Class GetNotificationChannelVerificationCodeResponse

The GetNotificationChannelVerificationCode request.

Inheritance
System.Object
GetNotificationChannelVerificationCodeResponse
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 GetNotificationChannelVerificationCodeResponse : IDirectResponseSchema

Properties

Code

The verification code, which may be used to verify other channels that have an equivalent identity (i.e. other channels of the same type with the same fingerprint such as other email channels with the same email address or other sms channels with the same number).

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

ETag

The ETag of the item.

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

ExpireTime

The expiration time associated with the code that was returned. If an expiration was provided in the request, this is the minimum of the requested expiration in the request and the max permitted expiration.

Declaration
[JsonProperty("expireTime")]
public virtual object ExpireTime { get; set; }
Property Value
Type Description
System.Object

Implements

IDirectResponseSchema
Back to top