Show / Hide Table of Contents

Class IdentityProofingProviderRuntimeData

Identity Proofing runtime custom data.

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

Properties

AttrName

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

Name of the attribute.
Added In: 2505161800
SCIM++ Properties:

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

Required

AttrValue

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

Value of the attribute.
Added In: 2505161800
SCIM++ Properties:

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

Required

In this article
Back to top