Show / Hide Table of Contents

Class StaticPublicKey

A static public key which is used to verify the JWT signature.

Inheritance
object
StaticPublicKey
JsonWebKey
PemEncodedPublicKey
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
[JsonConverter(typeof(StaticPublicKeyModelConverter))]
public class StaticPublicKey

Properties

Kid

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

A unique key ID. This key will be used to verify the signature of a JWT with matching "kid".

Remarks

Required

In this article
Back to top