Show / Hide Table of Contents

Class ApprovalWorkflowMaxDuration

Max duration of the ApprovalWorkflow must be acted at all levels.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
ApprovalWorkflowMaxDuration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentitydomainsService.Models
Assembly: OCI.DotNetSDK.Identitydomains.dll
Syntax
public class ApprovalWorkflowMaxDuration

Properties

Unit

Declaration
[Required(ErrorMessage = "Unit is required.")]
[JsonProperty(PropertyName = "unit")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApprovalWorkflowMaxDuration.UnitEnum? Unit { get; set; }
Property Value
Type Description
ApprovalWorkflowMaxDuration.UnitEnum?

The unit of the max duration.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • idcsDefaultValue: DAY
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
  • uniqueness: none
Remarks

Required

Value

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

The value of the max duration.
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • idcsMaxValue: 1488
  • idcsMinValue: 1
  • idcsDefaultValue: 14
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: integer
  • uniqueness: none
Remarks

Required

In this article
Back to top