Skip to content

ValorantPresence

ValorantPresence Record

Sorry, too lazy to write proper, so here is the record.

C#
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
public record ValorantPresence(
    [property: JsonPropertyName("isValid")] bool? IsValid,
    [property: JsonPropertyName("sessionLoopState")] string SessionLoopState,
    [property: JsonPropertyName("partyOwnerSessionLoopState")] string PartyOwnerSessionLoopState,
    [property: JsonPropertyName("customGameName")] string CustomGameName,
    [property: JsonPropertyName("customGameTeam")] string CustomGameTeam,
    [property: JsonPropertyName("partyOwnerMatchMap")] string PartyOwnerMatchMap,
    [property: JsonPropertyName("partyOwnerMatchCurrentTeam")] string PartyOwnerMatchCurrentTeam,
    [property: JsonPropertyName("partyOwnerMatchScoreAllyTeam")] int? PartyOwnerMatchScoreAllyTeam,
    [property: JsonPropertyName("partyOwnerMatchScoreEnemyTeam")] int? PartyOwnerMatchScoreEnemyTeam,
    [property: JsonPropertyName("partyOwnerProvisioningFlow")] string PartyOwnerProvisioningFlow,
    [property: JsonPropertyName("provisioningFlow")] string ProvisioningFlow,
    [property: JsonPropertyName("matchMap")] string MatchMap,
    [property: JsonPropertyName("partyId")] string PartyId,
    [property: JsonPropertyName("isPartyOwner")] bool? IsPartyOwner,
    [property: JsonPropertyName("partyState")] string PartyState,
    [property: JsonPropertyName("partyAccessibility")] string PartyAccessibility,
    [property: JsonPropertyName("maxPartySize")] int? MaxPartySize,
    [property: JsonPropertyName("queueId")] string QueueId,
    [property: JsonPropertyName("partyLFM")] bool? PartyLFM,
    [property: JsonPropertyName("partyClientVersion")] string PartyClientVersion,
    [property: JsonPropertyName("partySize")] int? PartySize,
    [property: JsonPropertyName("tournamentId")] string TournamentId,
    [property: JsonPropertyName("rosterId")] string RosterId,
    [property: JsonPropertyName("partyVersion")] long? PartyVersion,
    [property: JsonPropertyName("queueEntryTime")] string QueueEntryTime,
    [property: JsonPropertyName("playerCardId")] string PlayerCardId,
    [property: JsonPropertyName("playerTitleId")] string PlayerTitleId,
    [property: JsonPropertyName("preferredLevelBorderId")] string PreferredLevelBorderId,
    [property: JsonPropertyName("accountLevel")] int? AccountLevel,
    [property: JsonPropertyName("competitiveTier")] int? CompetitiveTier,
    [property: JsonPropertyName("leaderboardPosition")] int? LeaderboardPosition,
    [property: JsonPropertyName("isIdle")] bool? IsIdle
);