Show / Hide Table of Contents

Class Recurrence

An object for representing a recurrence time interval

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

Properties

IntervalType

Declaration
[Required(ErrorMessage = "IntervalType is required.")]
[JsonProperty(PropertyName = "intervalType")]
[JsonConverter(typeof(StringEnumConverter))]
public Recurrence.IntervalTypeEnum? IntervalType { get; set; }
Property Value
Type Description
Recurrence.IntervalTypeEnum?

the interval period for the recurrence

Remarks

Required

IntervalValue

Declaration
[Required(ErrorMessage = "IntervalValue is required.")]
[JsonProperty(PropertyName = "intervalValue")]
public string IntervalValue { get; set; }
Property Value
Type Description
string

the value for the interval period for the recurrence

Remarks

Required

In this article
Back to top