Show / Hide Table of Contents

Class PasswordResetAuthenticationRequest

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

Properties

PasswordResetToken

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

The password reset token

Remarks

Required

UserId

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

The id of the user

Remarks

Required

In this article
Back to top