Module Values.AccessorSummarySource

A summary of accessor properties.

Sourcetype nonrec t = {
  1. id : ResourceIdString.t option;
    (*

    The unique identifier of the accessor.

    *)
  2. type_ : AccessorType.t option;
    (*

    The type of the accessor. Currently accessor type is restricted to BILLING_TOKEN.

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

    The current status of the accessor.

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

    The creation date and time of the accessor.

    *)
  5. arn : ArnString.t option;
    (*

    The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.

    *)
  6. networkType : AccessorNetworkType.t option;
    (*

    The blockchain network that the Accessor token is created for.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?status:??? -> ?creationDate:??? -> ?arn:??? -> ?networkType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceIdString.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