Skip to content

Competitive Update

Competitive Update

C#
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
public record Match(
    [property: JsonPropertyName("MatchID")] string MatchID,
    [property: JsonPropertyName("MapID")] string MapID,
    [property: JsonPropertyName("SeasonID")] string SeasonID,
    [property: JsonPropertyName("MatchStartTime")] object MatchStartTime,
    [property: JsonPropertyName("TierAfterUpdate")] long? TierAfterUpdate,
    [property: JsonPropertyName("TierBeforeUpdate")] long? TierBeforeUpdate,
    [property: JsonPropertyName("RankedRatingAfterUpdate")] long? RankedRatingAfterUpdate,
    [property: JsonPropertyName("RankedRatingBeforeUpdate")] long? RankedRatingBeforeUpdate,
    [property: JsonPropertyName("RankedRatingEarned")] long? RankedRatingEarned,
    [property: JsonPropertyName("RankedRatingPerformanceBonus")] long? RankedRatingPerformanceBonus,
    [property: JsonPropertyName("CompetitiveMovement")] string CompetitiveMovement,
    [property: JsonPropertyName("AFKPenalty")] long? AFKPenalty
);

public record CompetitiveUpdate(
    [property: JsonPropertyName("Version")] long? Version,
    [property: JsonPropertyName("Subject")] string Subject,
    [property: JsonPropertyName("Matches")] IReadOnlyList<Match> Matches
);