Show / Hide Table of Contents

Class IdentityProofingProviderTemplateConfiguration

Proofing Provider Configuration Template.

Inheritance
object
IdentityProofingProviderTemplateConfiguration
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 IdentityProofingProviderTemplateConfiguration

Properties

Name

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

Name of the Identity Proofing Provider configuration.
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
Remarks

Required

Sensitivity

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

Sensitivity of the Identity Proofing configuration.
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: boolean
Remarks

Required

Type

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

Type of the Identity Proofing configuration.
SCIM++ Properties:

  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: default
  • type: string
Remarks

Required

In this article
Back to top