Module Values.CustomerAgreementSource

The name and status of a customer agreement.

Sourcetype nonrec t = {
  1. agreementName : AgreementName.t option;
    (*

    The name of the agreement.

    *)
  2. status : Status.t option;
    (*

    The status of the customer agreement. This will be either signed or unsigned

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