GoogleApi.Vault.V1.Model.CalendarOptions (google_api_vault v0.25.0)

View Source

Additional options for Calendar search

Attributes

  • locationQuery (type: list(String.t), default: nil) - Matches only those events whose location contains all of the words in the given set. If the string contains quoted phrases, this method only matches those events whose location contain the exact phrase. Entries in the set are considered in "and". Word splitting example: ["New Zealand"] vs ["New","Zealand"] "New Zealand": matched by both "New and better Zealand": only matched by the later
  • minusWords (type: list(String.t), default: nil) - Matches only those events that do not contain any of the words in the given set in title, description, location, or attendees. Entries in the set are considered in "or".
  • peopleQuery (type: list(String.t), default: nil) - Matches only those events whose attendees contain all of the words in the given set. Entries in the set are considered in "and".
  • responseStatuses (type: list(String.t), default: nil) - Matches only events for which the custodian gave one of these responses. If the set is empty or contains ATTENDEE_RESPONSE_UNSPECIFIED there will be no filtering on responses.
  • versionDate (type: DateTime.t, default: nil) - Search the current version of the Calendar event, but export the contents of the last version saved before 12:00 AM UTC on the specified date. Enter the date in UTC.

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.Vault.V1.Model.CalendarOptions{
  locationQuery: [String.t()] | nil,
  minusWords: [String.t()] | nil,
  peopleQuery: [String.t()] | nil,
  responseStatuses: [String.t()] | nil,
  versionDate: DateTime.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.