package gapi-ocaml

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module GapiCalendarV3Model.EventAttachmentSource

Sourcetype t = {
  1. 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. Required when adding an attachment.

    *)
  2. 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.

    *)
  3. title : string;
    (*

    Attachment title.

    *)
  4. mimeType : string;
    (*

    Internet media type (MIME type) of the attachment.

    *)
}
Sourceval fileUrl : (t, string) GapiLens.t
Sourceval fileId : (t, string) GapiLens.t
Sourceval title : (t, string) GapiLens.t
Sourceval mimeType : (t, string) GapiLens.t
Sourceval empty : t
Sourceval render : t -> GapiJson.json_data_model list
Sourceval to_data_model : t -> GapiJson.json_data_model
Sourceval of_data_model : GapiJson.json_data_model -> t