Show / Hide Table of Contents

Class IdentitySettingsTokens

A list of tokens and their expiry length.

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

Properties

ExpiresAfter

Declaration
[JsonProperty(PropertyName = "expiresAfter")]
public int? ExpiresAfter { get; set; }
Property Value
Type Description
int?

Indicates the number of minutes after which the token expires automatically.
SCIM++ Properties:

  • caseExact: false
  • multiValued: false
  • mutability: readWrite
  • required: false
  • returned: default
  • type: integer
  • uniqueness: none

Type

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

The token type.
SCIM++ Properties:

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

Required

In this article
Back to top