module EventAttachment:sig..end
type t = {
|
fileId : |
(* |
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 : |
(* |
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 : |
(* |
URL link to the attachment's icon. Read-only.
| *) |
|
mimeType : |
(* |
Internet media type (MIME type) of the attachment.
| *) |
|
title : |
(* |
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