Show / Hide Table of Contents

Class PoolSchedule

Definition of when pool auto start or stop for a given day of a week.

Inheritance
object
PoolSchedule
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataflowService.Models
Assembly: OCI.DotNetSDK.Dataflow.dll
Syntax
public class PoolSchedule

Properties

DayOfWeek

Declaration
[JsonProperty(PropertyName = "dayOfWeek")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DayOfWeek? DayOfWeek { get; set; }
Property Value
Type Description
DayOfWeek?

Day of the week SUN-SAT

StartTime

Declaration
[JsonProperty(PropertyName = "startTime")]
public int? StartTime { get; set; }
Property Value
Type Description
int?

Hour of the day to start or stop pool.

StopTime

Declaration
[JsonProperty(PropertyName = "stopTime")]
public int? StopTime { get; set; }
Property Value
Type Description
int?

Hour of the day to stop the pool.

In this article
Back to top