package gapi-ocaml

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

Module GapiGmailV1Model.FilterCriteriaSource

Sourcetype t = {
  1. excludeChats : bool;
    (*

    Whether the response should exclude chats.

    *)
  2. from : string;
    (*

    The sender's display name or email address.

    *)
  3. hasAttachment : bool;
    (*

    Whether the message has any attachment.

    *)
  4. negatedQuery : string;
    (*

    Only return messages not matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread".

    *)
  5. query : string;
    (*

    Only return messages matching the specified query. Supports the same query format as the Gmail search box. For example, "from:someuser@example.com rfc822msgid: is:unread".

    *)
  6. size : int;
    (*

    The size of the entire RFC822 message in bytes, including all headers and attachments.

    *)
  7. sizeComparison : string;
    (*

    How the message size in bytes should be in relation to the size field.

    *)
  8. subject : string;
    (*

    Case-insensitive phrase found in the message's subject. Trailing and leading whitespace are be trimmed and adjacent spaces are collapsed.

    *)
  9. _to : string;
    (*

    The recipient's display name or email address. Includes recipients in the "to", "cc", and "bcc" header fields. You can use simply the local part of the email address. For example, "example" and "example@" both match "example@gmail.com". This field is case-insensitive.

    *)
}
Sourceval excludeChats : (t, bool) GapiLens.t
Sourceval from : (t, string) GapiLens.t
Sourceval hasAttachment : (t, bool) GapiLens.t
Sourceval negatedQuery : (t, string) GapiLens.t
Sourceval query : (t, string) GapiLens.t
Sourceval size : (t, int) GapiLens.t
Sourceval sizeComparison : (t, string) GapiLens.t
Sourceval subject : (t, string) GapiLens.t
Sourceval _to : (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