Module Values.ReceivedMetadataSource

Metadata associated with received licenses and grants.

Sourcetype nonrec t = {
  1. receivedStatus : ReceivedStatus.t option;
    (*

    Received status.

    *)
  2. receivedStatusReason : StatusReasonMessage.t option;
    (*

    Received status reason.

    *)
  3. allowedOperations : AllowedOperationList.t option;
    (*

    Allowed operations.

    *)
}
Sourceval make : ?receivedStatus:??? -> ?receivedStatusReason:??? -> ?allowedOperations:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `String of StatusReasonMessage.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