Show / Hide Table of Contents

Class ScheduleTrigger

The trigger of the schedule can be UNIX cron or iCal expression or simple interval

Inheritance
object
ScheduleTrigger
ScheduleCronTrigger
ScheduleICalTrigger
ScheduleIntervalTrigger
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
[JsonConverter(typeof(ScheduleTriggerModelConverter))]
public class ScheduleTrigger

Properties

TimeEnd

Declaration
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The schedule end date time, if null, the schedule will never expire. Format is defined by RFC3339.

TimeStart

Declaration
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

The schedule starting date time, if null, System set the time when schedule is created. Format is defined by RFC3339.

In this article
Back to top