Module Values.SchemaExtensionInfoSource

Information about a schema extension.

Sourcetype nonrec t = {
  1. directoryId : DirectoryId.t option;
    (*

    The identifier of the directory to which the schema extension is applied.

    *)
  2. schemaExtensionId : SchemaExtensionId.t option;
    (*

    The identifier of the schema extension.

    *)
  3. description : Description.t option;
    (*

    A description of the schema extension.

    *)
  4. schemaExtensionStatus : SchemaExtensionStatus.t option;
    (*

    The current status of the schema extension.

    *)
  5. schemaExtensionStatusReason : SchemaExtensionStatusReason.t option;
    (*

    The reason for the SchemaExtensionStatus.

    *)
  6. startDateTime : StartDateTime.t option;
    (*

    The date and time that the schema extension started being applied to the directory.

    *)
  7. endDateTime : EndDateTime.t option;
    (*

    The date and time that the schema extension was completed.

    *)
}
Sourceval make : ?directoryId:??? -> ?schemaExtensionId:??? -> ?description:??? -> ?schemaExtensionStatus:??? -> ?schemaExtensionStatusReason:??? -> ?startDateTime:??? -> ?endDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DirectoryId.t | `Timestamp of StartDateTime.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