verificationStatus property

String? verificationStatus
getter/setter pair

Indicates whether this channel has been verified or not.

On a ListNotificationChannels or GetNotificationChannel operation, this field is expected to be populated.If the value is UNVERIFIED, then it indicates that the channel is non-functioning (it both requires verification and lacks verification); otherwise, it is assumed that the channel works.If the channel is neither VERIFIED nor UNVERIFIED, it implies that the channel is of a type that does not require verification or that this specific channel has been exempted from verification because it was created prior to verification being required for channels of this type.This field cannot be modified using a standard UpdateNotificationChannel operation. To change the value of this field, you must call VerifyNotificationChannel. Possible string values are:

  • "VERIFICATION_STATUS_UNSPECIFIED" : Sentinel value used to indicate that the state is unknown, omitted, or is not applicable (as in the case of channels that neither support nor require verification in order to function).
  • "UNVERIFIED" : The channel has yet to be verified and requires verification to function. Note that this state also applies to the case where the verification process has been initiated by sending a verification code but where the verification code has not been submitted to complete the process.
  • "VERIFIED" : It has been proven that notifications can be received on this notification channel and that someone on the project has access to messages that are delivered to that channel.

Implementation

core.String? verificationStatus;