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.
Implements
Inherited Members
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? |