Module GapiCalendarV3Model.EventAttachment

module EventAttachment: sig .. end

type t = {
   fileId : string; (*
ID of the attached file. Read-only. For Google Drive files, this is the ID of the corresponding Files resource entry in the Drive API.
*)
   fileUrl : string; (*
URL link to the attachment. For adding Google Drive file attachments use the same format as in alternateLink property of the Files resource in the Drive API.
*)
   iconLink : string; (*
URL link to the attachment's icon. Read-only.
*)
   mimeType : string; (*
Internet media type (MIME type) of the attachment.
*)
   title : string; (*
Attachment title.
*)
}
val fileId : (t, string) GapiLens.t
val fileUrl : (t, string) GapiLens.t
val iconLink : (t, string) GapiLens.t
val mimeType : (t, string) GapiLens.t
val title : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t ->
GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t