Module Values.UpdateArchiveRequestSource

The request to update properties of an existing email archive.

Sourcetype nonrec t = {
  1. archiveId : ArchiveIdString.t;
    (*

    The identifier of the archive to update.

    *)
  2. archiveName : ArchiveNameString.t option;
    (*

    A new, unique name for the archive.

    *)
  3. retention : ArchiveRetention.t option;
    (*

    A new retention period for emails in the archive.

    *)
}
Sourceval context_ : string
Sourceval make : ?archiveName:??? -> ?retention:??? -> archiveId:ArchiveIdString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ArchiveIdString.t | `Structure of (string * [> `Enum of string ]) list ]) 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