/** *

Represents the verification attributes of a single identity.

*/ export interface _IdentityVerificationAttributes { /** *

The verification status of the identity: "Pending", "Success", "Failed", or "TemporaryFailure".

*/ VerificationStatus: "Pending" | "Success" | "Failed" | "TemporaryFailure" | "NotStarted" | string; /** *

The verification token for a domain identity. Null for email address identities.

*/ VerificationToken?: string; } export declare type _UnmarshalledIdentityVerificationAttributes = _IdentityVerificationAttributes;