Show / Hide Table of Contents

Class RecurringTimeWindow

Represents an arbitrary window of time that recurs.

Inheritance
object
RecurringTimeWindow
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.DataFusion.v1beta1.Data
Assembly: Google.Apis.DataFusion.v1beta1.dll
Syntax
public class RecurringTimeWindow : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Recurrence

Required. An RRULE with format RFC-5545 for how this window reccurs. They go on for the span of time between the start and end time. The only supported FREQ value is "WEEKLY". To have something repeat every weekday, use: "FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR". This specifies how frequently the window starts. To have a 9 am - 5 pm UTC-4 window every weekday, use something like:

start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence =
FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR
Declaration
[JsonProperty("recurrence")]
public virtual string Recurrence { get; set; }
Property Value
Type Description
string

Window

Required. The window representing the start and end time of recurrences. This field ignores the date components of the provided timestamps. Only the time of day and duration between start and end time are relevant.

Declaration
[JsonProperty("window")]
public virtual TimeWindow Window { get; set; }
Property Value
Type Description
TimeWindow

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX