Show / Hide Table of Contents

Class Date

Represents a whole calendar date, for example a date of birth. The time of day and time zone are either specified elsewhere or are not significant. The date is relative to the Proleptic Gregorian Calendar. The date must be a valid calendar date between the year 1 and 9999.

Inheritance
object
Date
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.CloudSearch.v1.Data
Assembly: Google.Apis.CloudSearch.v1.dll
Syntax
public class Date : IDirectResponseSchema

Properties

Day

Day of month. Must be from 1 to 31 and valid for the year and month.

Declaration
[JsonProperty("day")]
public virtual int? Day { get; set; }
Property Value
Type Description
int?

ETag

The ETag of the item.

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

Month

Month of date. Must be from 1 to 12.

Declaration
[JsonProperty("month")]
public virtual int? Month { get; set; }
Property Value
Type Description
int?

Year

Year of date. Must be from 1 to 9999.

Declaration
[JsonProperty("year")]
public virtual int? Year { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX