Show / Hide Table of Contents

Class MyAuthenticationFactorValidatorThirdPartyFactor

User's third-party authentication factor details
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: complex
  • uniqueness: none
Inheritance
object
MyAuthenticationFactorValidatorThirdPartyFactor
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 MyAuthenticationFactorValidatorThirdPartyFactor

Properties

ThirdPartyFactorId

Declaration
[JsonProperty(PropertyName = "thirdPartyFactorId")]
public string ThirdPartyFactorId { get; set; }
Property Value
Type Description
string

Reference to the third party resource
SCIM++ Properties:

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

ThirdPartyFactorType

Declaration
[JsonProperty(PropertyName = "thirdPartyFactorType")]
public string ThirdPartyFactorType { get; set; }
Property Value
Type Description
string

Type of the third party authentication factor
SCIM++ Properties:

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

ThirdPartyVendorName

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

The vendor name of the third party factor
SCIM++ Properties:

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

Required

In this article
Back to top