Module Values.ReviewDetailsSource

An object that contains information about your account details review.

Sourcetype nonrec t = {
  1. status : ReviewStatus.t option;
    (*

    The status of the latest review of your account. The status can be one of the following: PENDING – We have received your appeal and are in the process of reviewing it. GRANTED – Your appeal has been reviewed and your production access has been granted. DENIED – Your appeal has been reviewed and your production access has been denied. FAILED – An internal error occurred and we didn't receive your appeal. You can submit your appeal again.

    *)
  2. caseId : CaseId.t option;
    (*

    The associated support center case ID (if any).

    *)
}
Sourceval make : ?status:??? -> ?caseId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CaseId.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