Module Values.IdentityVerificationAttributesSource

Represents the verification attributes of a single identity.

Sourcetype nonrec t = {
  1. verificationStatus : VerificationStatus.t option;
    (*

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

    *)
  2. verificationToken : VerificationToken.t option;
    (*

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

    *)
}
Sourceval make : ?verificationStatus:??? -> ?verificationToken:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VerificationToken.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t