Module Values.IssuanceDetailSource

Represents detailed information about a specific issuance of benefit value.

Sourcetype nonrec t = {
  1. issuanceId : String_.t option;
    (*

    The unique identifier for this specific issuance.

    *)
  2. issuanceAmount : MonetaryValue.t option;
    (*

    The monetary amount or value that was issued in this specific issuance.

    *)
  3. issuedAt : Timestamp.t option;
    (*

    The timestamp when this specific issuance was processed.

    *)
}
Sourceval make : ?issuanceId:??? -> ?issuanceAmount:??? -> ?issuedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `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