Class WeeklyWindow
Weekly windows. For example, blocking actions every Saturday and Sunday. Another example would be blocking actions every weekday from 5pm to midnight.
Implements
Inherited Members
Namespace: Google.Apis.CloudDeploy.v1.Data
Assembly: Google.Apis.CloudDeploy.v1.dll
Syntax
public class WeeklyWindow : IDirectResponseSchema
Properties
DaysOfWeek
Optional. Days of week. If left empty, all days of the week will be included.
Declaration
[JsonProperty("daysOfWeek")]
public virtual IList<string> DaysOfWeek { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndTime
Optional. End time (exclusive). Use 24:00 to indicate midnight. If you specify end_time you must also specify start_time. If left empty, this will block for the entire day for the days specified in days_of_week.
Declaration
[JsonProperty("endTime")]
public virtual TimeOfDay EndTime { get; set; }
Property Value
Type | Description |
---|---|
TimeOfDay |
StartTime
Optional. Start time (inclusive). Use 00:00 for the beginning of the day. If you specify start_time you must also specify end_time. If left empty, this will block for the entire day for the days specified in days_of_week.
Declaration
[JsonProperty("startTime")]
public virtual TimeOfDay StartTime { get; set; }
Property Value
Type | Description |
---|---|
TimeOfDay |