Show / Hide Table of Contents

Class FullyQualifiedScope

Inheritance
object
FullyQualifiedScope
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.IdentityService.Models
Assembly: OCI.DotNetSDK.Identity.dll
Syntax
public class FullyQualifiedScope

Properties

Audience

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

Audience for the given scope context.

Remarks

Required

Scope

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

Allowed permission scope for the given context.

Remarks

Required

In this article
Back to top