Module Values.AssetScopeSource

The asset scope.

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

    The asset ID of the asset scope.

    *)
  2. filterIds : FilterIds.t option;
    (*

    The filter IDs of the asset scope.

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

    The status of the asset scope.

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

    The error message of the asset scope.

    *)
}
Sourceval make : ?assetId:??? -> ?filterIds:??? -> ?status:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of FilterId.t ] list | `String of AssetId.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