Module Values.SubscribedAssetSource

The details of the asset for which the subscription grant is created.

Sourcetype nonrec t = {
  1. assetId : AssetId.t option;
    (*

    The identifier of the asset for which the subscription grant is created.

    *)
  2. assetRevision : Revision.t option;
    (*

    The revision of the asset for which the subscription grant is created.

    *)
  3. status : SubscriptionGrantStatus.t option;
    (*

    The status of the asset for which the subscription grant is created.

    *)
  4. targetName : String_.t option;
    (*

    The target name of the asset for which the subscription grant is created.

    *)
  5. failureCause : FailureCause.t option;
    (*

    The failure cause included in the details of the asset for which the subscription grant is created.

    *)
  6. grantedTimestamp : Timestamp.t option;
    (*

    The timestamp of when the subscription grant to the asset is created.

    *)
  7. failureTimestamp : Timestamp.t option;
    (*

    The failure timestamp included in the details of the asset for which the subscription grant is created.

    *)
  8. assetScope : AssetScope.t option;
    (*

    The asset scope of the subscribed asset.

    *)
  9. permissions : Permissions.t option;
    (*

    The asset permissions.

    *)
}
Sourceval make : ?assetId:??? -> ?assetRevision:??? -> ?status:??? -> ?targetName:??? -> ?failureCause:??? -> ?grantedTimestamp:??? -> ?failureTimestamp:??? -> ?assetScope:??? -> ?permissions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AssetId.t | `Structure of (string * [> `List of [> `Enum of string | `String of FilterId.t ] list | `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