Class DeleteAccountRequest
Represents a request to delete the authenticated user's account.
public sealed record DeleteAccountRequest : IEquatable<DeleteAccountRequest>
- Inheritance
-
DeleteAccountRequest
- Implements
- Inherited Members
Properties
ConfirmationCode
Gets the confirmation code sent to the user's email.
[JsonPropertyName("confirmation_code")]
public int ConfirmationCode { get; init; }
Property Value
SessionToken
Gets the user's session token from the website, required for account deletion.
[JsonPropertyName("session_token")]
public string SessionToken { get; init; }