Show / Hide Table of Contents

Class UserExtRiskScores

The risk score pertaining to the user.
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: false
  • idcsCompositeKey: [value]
  • multiValued: true
  • mutability: readWrite
  • required: false
  • returned: request
  • type: complex
  • uniqueness: none
Inheritance
object
UserExtRiskScores
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 UserExtRiskScores

Properties

LastUpdateTimestamp

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

Last update timestamp for the risk score
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: false
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: dateTime
  • uniqueness: none
Remarks

Required

Ref

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

Risk Provider Profile URI: URI that corresponds to risk source identifier.
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: true
  • idcsSearchable: false
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: always
  • type: reference
  • uniqueness: none

RiskLevel

Declaration
[Required(ErrorMessage = "RiskLevel is required.")]
[JsonProperty(PropertyName = "riskLevel")]
[JsonConverter(typeof(ResponseEnumConverter))]
public UserExtRiskScores.RiskLevelEnum? RiskLevel { get; set; }
Property Value
Type Description
UserExtRiskScores.RiskLevelEnum?

Risk Level
Added In: 18.1.6
SCIM++ Properties:

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

Required

Score

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

Risk Score value
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readWrite
  • required: true
  • returned: always
  • type: integer
  • uniqueness: none
  • idcsMaxValue: 100
  • idcsMinValue: 0
Remarks

Required

Source

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

Risk Provider Profile Source
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: always
  • type: string
  • uniqueness: none

Status

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

Risk Provider Profile status
Added In: 18.1.6
SCIM++ Properties:

  • caseExact: false
  • idcsSearchable: true
  • multiValued: false
  • mutability: readOnly
  • required: false
  • returned: always
  • type: string
  • uniqueness: none

Value

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

Risk Provider Profile: Identifier for the provider service from which the risk score was received.
Added In: 18.1.6
SCIM++ Properties:

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

Required

In this article
Back to top