Skip to content

Chat Participant

Participant Record

C#
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
public record Participant(
    [property: JsonPropertyName("activePlatform")] object ActivePlatform,
    [property: JsonPropertyName("cid")] string Cid,
    [property: JsonPropertyName("game_name")] string GameName,
    [property: JsonPropertyName("game_tag")] string GameTag,
    [property: JsonPropertyName("muted")] bool Muted,
    [property: JsonPropertyName("name")] string Name,
    [property: JsonPropertyName("pid")] string Pid,
    [property: JsonPropertyName("puuid")] string Puuid,
    [property: JsonPropertyName("region")] string Region
);

public record ChatParticipant(
    [property: JsonPropertyName("participants")] IReadOnlyList<Participant> Participants
);