Show / Hide Table of Contents

Class ScheduleIntervalConfig

The interval schedule config.

Inheritance
object
ScheduleConfig
ScheduleIntervalConfig
Inherited Members
ScheduleConfig.State
ScheduleConfig.TimeStart
ScheduleConfig.TimeEnd
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiService.Models
Assembly: OCI.DotNetSDK.Generativeai.dll
Syntax
public class ScheduleIntervalConfig : ScheduleConfig

Properties

Frequency

Declaration
[Required(ErrorMessage = "Frequency is required.")]
[JsonProperty(PropertyName = "frequency")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScheduleIntervalConfig.FrequencyEnum? Frequency { get; set; }
Property Value
Type Description
ScheduleIntervalConfig.FrequencyEnum?

The type of frequency

Remarks

Required

Interval

Declaration
[Required(ErrorMessage = "Interval is required.")]
[JsonProperty(PropertyName = "interval")]
public int? Interval { get; set; }
Property Value
Type Description
int?

The interval of frequency.

Remarks

Required

In this article
Back to top