Module Values.NamespaceSummarySource

Contains details about a namespace.

Sourcetype nonrec t = {
  1. namespace : NamespaceList.t option;
    (*

    The name of the namespace.

    *)
  2. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the namespace was created at.

    *)
  3. createdBy : AccountId.t option;
    (*

    The ID of the account that created the namespace.

    *)
  4. ownerAccountId : AccountId.t option;
    (*

    The ID of the account that owns the namespace.

    *)
  5. namespaceId : NamespaceId.t option;
    (*

    The system-assigned unique identifier for the namespace.

    *)
  6. tableBucketId : TableBucketId.t option;
    (*

    The system-assigned unique identifier for the table bucket that contains this namespace.

    *)
}
Sourceval make : ?namespace:??? -> ?createdAt:??? -> ?createdBy:??? -> ?ownerAccountId:??? -> ?namespaceId:??? -> ?tableBucketId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of NamespaceName.t ] list | `String of AccountId.t | `Timestamp of SyntheticTimestamp_date_time.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