Show / Hide Table of Contents

Class MyTrustedUserAgentTrustedFactors

Trusted 2FA Factors

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

Properties

Category

Declaration
[JsonProperty(PropertyName = "category")]
[JsonConverter(typeof(ResponseEnumConverter))]
public MyTrustedUserAgentTrustedFactors.CategoryEnum? Category { get; set; }
Property Value
Type Description
MyTrustedUserAgentTrustedFactors.CategoryEnum?

Trusted Factor Type. Local, X509, SAML SOCIAL
Added In: 2111190457
SCIM++ Properties:

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

CreationTime

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

trust factor creation time
Added In: 19.2.1
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • idcsRequiresWriteForAccessFlows: true
  • required: true
  • returned: default
  • type: dateTime
  • uniqueness: none
Remarks

Required

Type

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

Trusted Factor
Added In: 19.2.1
SCIM++ Properties:

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

Required

In this article
Back to top