Show / Hide Table of Contents

Class CalendarOptions

Additional options for Calendar search

Inheritance
object
CalendarOptions
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Vault.v1.Data
Assembly: Google.Apis.Vault.v1.dll
Syntax
public class CalendarOptions : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

LocationQuery

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

Declaration
[JsonProperty("locationQuery")]
public virtual IList<string> LocationQuery { get; set; }
Property Value
Type Description
IList<string>

MinusWords

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".

Declaration
[JsonProperty("minusWords")]
public virtual IList<string> MinusWords { get; set; }
Property Value
Type Description
IList<string>

PeopleQuery

Matches only those events whose attendees contain all of the words in the given set. Entries in the set are considered in "and".

Declaration
[JsonProperty("peopleQuery")]
public virtual IList<string> PeopleQuery { get; set; }
Property Value
Type Description
IList<string>

ResponseStatuses

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.

Declaration
[JsonProperty("responseStatuses")]
public virtual IList<string> ResponseStatuses { get; set; }
Property Value
Type Description
IList<string>

VersionDate

object representation of VersionDateRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use VersionDateDateTimeOffset instead.")]
public virtual object VersionDate { get; set; }
Property Value
Type Description
object

VersionDateDateTimeOffset

DateTimeOffset representation of VersionDateRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? VersionDateDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

VersionDateRaw

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.

Declaration
[JsonProperty("versionDate")]
public virtual string VersionDateRaw { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX