Values.ArchiveSourceAn archive resource for storing and retaining emails.
type nonrec t = {archiveId : ArchiveIdString.t option;The unique identifier of the archive.
*)archiveName : ArchiveNameString.t option;The unique name assigned to the archive.
*)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.
*)lastUpdatedTimestamp : Timestamp.t option;The timestamp of when the archive was last updated.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ArchiveIdString.t
| `Timestamp of Timestamp.t ])
list ]