Table of Contents

Class PendingLinkVerification

Namespace
FishMMO.DiscordBot.Data
Assembly
FishMMO-DiscordBot.dll

Represents an in-progress account-link verification request. Stored in memory only; expires after a timeout.

public class PendingLinkVerification
Inheritance
PendingLinkVerification
Inherited Members

Properties

CharacterName

Character name the user claims to own.

public string CharacterName { get; set; }

Property Value

string

DiscordUserId

Discord user ID requesting the link.

public ulong DiscordUserId { get; set; }

Property Value

ulong

ExpiresAtUtc

When this verification request expires.

public DateTime ExpiresAtUtc { get; set; }

Property Value

DateTime

VerificationCode

The 6-character verification code the user must type in-game.

public string VerificationCode { get; set; }

Property Value

string