Show / Hide Table of Contents

Class CreateOAuth2ClientCredentialDetails

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

Properties

Description

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

Description of the oauth credential to help user differentiate them.

Remarks

Required

Name

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

Name of the oauth credential to help user differentiate them.

Remarks

Required

Scopes

Declaration
[Required(ErrorMessage = "Scopes is required.")]
[JsonProperty(PropertyName = "scopes")]
public List<FullyQualifiedScope> Scopes { get; set; }
Property Value
Type Description
List<FullyQualifiedScope>

Allowed scopes for the given oauth credential.

Remarks

Required

In this article
Back to top