Show / Hide Table of Contents

Class DailyFrequencyDetails

Frequency details model to set daily frequency

Inheritance
object
AbstractFrequencyDetails
DailyFrequencyDetails
Inherited Members
AbstractFrequencyDetails.Frequency
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class DailyFrequencyDetails : AbstractFrequencyDetails

Properties

Interval

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

This hold the repeatability aspect of a schedule. i.e. in a monhtly frequency, a task can be scheduled for every month, once in two months, once in tree months etc.

Time

Declaration
[JsonProperty(PropertyName = "time")]
public Time Time { get; set; }
Property Value
Type Description
Time
In this article
Back to top