Module Values.SupplementalDocumentSource

Supplemental document associated with the invoice.

Sourcetype nonrec t = {
  1. documentType : SupplementalDocumentType.t option;
    (*

    The type of supplemental document.

    *)
  2. documentId : StringWithoutNewLine.t option;
    (*

    The ID of the supplemental document.

    *)
  3. documentUrl : StringWithoutNewLine.t option;
    (*

    The pre-signed URL to download invoice supplemental document.

    *)
  4. documentUrlExpirationDate : Timestamp.t option;
    (*

    The pre-signed URL expiration date of invoice supplemental document.

    *)
}
Sourceval make : ?documentType:??? -> ?documentId:??? -> ?documentUrl:??? -> ?documentUrlExpirationDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StringWithoutNewLine.t | `Timestamp of Timestamp.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