Show / Hide Table of Contents

Class IdentityProofingProviderClaimMapping

Configure the verification claims and idcs attribute mapping.

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

Properties

AttrMatch

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

Matching attribute.
SCIM++ Properties:

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

Required

VerifiableClaim

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

Verifiable Claims.
SCIM++ Properties:

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

Required

In this article
Back to top