Module Values.CaseAttachmentAttributesSource

Sourcetype nonrec t = {
  1. attachmentId : AttachmentId.t option;
  2. fileName : FileName.t option;
  3. attachmentStatus : CaseAttachmentStatus.t option;
  4. creator : PrincipalId.t option;
  5. createdDate : Timestamp.t option;
}
Sourceval make : ?attachmentId:??? -> ?fileName:??? -> ?attachmentStatus:??? -> ?creator:??? -> ?createdDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AttachmentId.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