Module Values.SelfGrantStatusDetailSource

The details for the self granting status.

Sourcetype nonrec t = {
  1. databaseName : SelfGrantStatusDetailDatabaseNameString.t option;
    (*

    The name of the database used for the data source.

    *)
  2. schemaName : SelfGrantStatusDetailSchemaNameString.t option;
    (*

    The name of the schema used in the data source.

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

    The self granting status of the data source.

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

    The reason for why the operation failed.

    *)
}
Sourceval make : ?databaseName:??? -> ?schemaName:??? -> ?status:??? -> ?failureCause:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of SelfGrantStatusDetailDatabaseNameString.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