Show / Hide Table of Contents

Class Client

A Client.

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

Properties

Name

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

The name of the client. Must be unique within a subscriber.

Remarks

Required

Token

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

The token for the client. Must be unique within a tenancy.

Remarks

Required

In this article
Back to top