Show / Hide Table of Contents

Class SettingsTenantCustomClaims

Custom claims associated with the specific tenant

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

Properties

AllScopes

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

Indicates if the custom claim is associated with all scopes
Added In: 18.4.2
SCIM++ Properties:

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

Required

Expression

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

Indicates if the custom claim is an expression
Added In: 18.4.2
SCIM++ Properties:

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

Required

Mode

Declaration
[Required(ErrorMessage = "Mode is required.")]
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SettingsTenantCustomClaims.ModeEnum? Mode { get; set; }
Property Value
Type Description
SettingsTenantCustomClaims.ModeEnum?

Indicates under what scenario the custom claim will be return
Added In: 18.4.2
SCIM++ Properties:

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

Required

Name

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

Custom claim name
Added In: 18.4.2
SCIM++ Properties:

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

Required

Scopes

Declaration
[JsonProperty(PropertyName = "scopes")]
public List<string> Scopes { get; set; }
Property Value
Type Description
List<string>

Scopes associated with a specific custom claim
Added In: 18.4.2
SCIM++ Properties:

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

TokenType

Declaration
[Required(ErrorMessage = "TokenType is required.")]
[JsonProperty(PropertyName = "tokenType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SettingsTenantCustomClaims.TokenTypeEnum? TokenType { get; set; }
Property Value
Type Description
SettingsTenantCustomClaims.TokenTypeEnum?

Indicates what type of token the custom claim will be embedded
Added In: 18.4.2
SCIM++ Properties:

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

Required

Value

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

Custom claim value
Added In: 18.4.2
SCIM++ Properties:

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

Required

In this article
Back to top