Show / Hide Table of Contents

Class RefreshRequest

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

Properties

CurrentToken

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

The current security token that is to be renewed.

Remarks

Required

NewPublicKey

Declaration
[JsonProperty(PropertyName = "newPublicKey")]
public string NewPublicKey { get; set; }
Property Value
Type Description
string

An optional new public for the new token. If not supplied, currentToken's public key will be used.

In this article
Back to top