Module Values.ArchiveSource

An archive resource for storing and retaining emails.

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

    The unique identifier of the archive.

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

    The unique name assigned to the archive.

    *)
  3. archiveState : ArchiveState.t option;
    (*

    The current state of the archive: ACTIVE – The archive is ready and available for use. PENDING_DELETION – The archive has been marked for deletion and will be permanently deleted in 30 days. No further modifications can be made in this state.

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

    The timestamp of when the archive was last updated.

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