Package com.google.monitoring.v3
Interface GetNotificationChannelVerificationCodeResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GetNotificationChannelVerificationCodeResponse,GetNotificationChannelVerificationCodeResponse.Builder
public interface GetNotificationChannelVerificationCodeResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCode()The verification code, which may be used to verify other channels that have an equivalent identity (i.e.com.google.protobuf.ByteStringgetCodeBytes()The verification code, which may be used to verify other channels that have an equivalent identity (i.e.com.google.protobuf.TimestampgetExpireTime()The expiration time associated with the code that was returned.com.google.protobuf.TimestampOrBuildergetExpireTimeOrBuilder()The expiration time associated with the code that was returned.booleanhasExpireTime()The expiration time associated with the code that was returned.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCode
String getCode()
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).
string code = 1;- Returns:
- The code.
-
getCodeBytes
com.google.protobuf.ByteString getCodeBytes()
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).
string code = 1;- Returns:
- The bytes for code.
-
hasExpireTime
boolean hasExpireTime()
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.
.google.protobuf.Timestamp expire_time = 2;- Returns:
- Whether the expireTime field is set.
-
getExpireTime
com.google.protobuf.Timestamp getExpireTime()
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.
.google.protobuf.Timestamp expire_time = 2;- Returns:
- The expireTime.
-
getExpireTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getExpireTimeOrBuilder()
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.
.google.protobuf.Timestamp expire_time = 2;
-
-