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
System.Object
Date
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.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
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Month

Month of date. Must be from 1 to 12.

Declaration
[JsonProperty("month")]
public virtual int? Month { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Year

Year of date. Must be from 1 to 9999.

Declaration
[JsonProperty("year")]
public virtual int? Year { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top