Show / Hide Table of Contents

Class MyOAuth2ClientCredentialScopes

Scopes

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

Properties

Audience

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

Audience
SCIM++ Properties:

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

Required

Scope

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

Scope
SCIM++ Properties:

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

Required

In this article
Back to top