Show / Hide Table of Contents

Class HolidaysHoliday

Inheritance
System.Object
HolidaysHoliday
Implements
Google.Apis.Requests.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.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class HolidaysHoliday : IDirectResponseSchema

Properties

CountryCode

The CLDR territory code of the country in which the holiday is available. E.g. "US", "DE", "GB". A holiday cutoff can only be configured in a shipping settings service with matching delivery country. Always present.

Declaration
[JsonProperty("countryCode")]
public virtual string CountryCode { get; set; }
Property Value
Type Description
System.String

Date

Date of the holiday, in ISO 8601 format. E.g. "2016-12-25" for Christmas 2016. Always present.

Declaration
[JsonProperty("date")]
public virtual string Date { get; set; }
Property Value
Type Description
System.String

DeliveryGuaranteeDate

Date on which the order has to arrive at the customer's, in ISO 8601 format. E.g. "2016-12-24" for 24th December 2016. Always present.

Declaration
[JsonProperty("deliveryGuaranteeDate")]
public virtual string DeliveryGuaranteeDate { get; set; }
Property Value
Type Description
System.String

DeliveryGuaranteeHour

Hour of the day in the delivery location's timezone on the guaranteed delivery date by which the order has to arrive at the customer's. Possible values are: 0 (midnight), 1, ..., 12 (noon), 13, ..., 23. Always present.

Declaration
[JsonProperty("deliveryGuaranteeHour")]
public virtual ulong? DeliveryGuaranteeHour { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ETag

The ETag of the item.

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

Id

Unique identifier for the holiday to be used when configuring holiday cutoffs. Always present.

Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type Description
System.String

Type

The holiday type. Always present. Acceptable values are: - "Christmas" - "Easter" - "Father&apos;s Day" - "Halloween" - "Independence Day (USA)" - "Mother&apos;s Day" - "Thanksgiving" - "Valentine&apos;s Day"

Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top