Show / Hide Table of Contents

Class MonthlyRuleFrequencyDetails

Frequency Details model for monthly frequency based on week of month and day of week.

Inheritance
object
AbstractFrequencyDetails
MonthlyRuleFrequencyDetails
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 MonthlyRuleFrequencyDetails : AbstractFrequencyDetails

Properties

DayOfWeek

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

This holds the day of the week on which the schedule should be triggered.

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

WeekOfMonth

Declaration
[JsonProperty(PropertyName = "weekOfMonth")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MonthlyRuleFrequencyDetails.WeekOfMonthEnum? WeekOfMonth { get; set; }
Property Value
Type Description
MonthlyRuleFrequencyDetails.WeekOfMonthEnum?

This holds the week of the month in which the schedule should be triggered.

In this article
Back to top