private SeasonStat(string type, SeasonStatAttributes attributes, StatRelationships relationships, ApiLink links) { Type = type; Attributes = attributes; Relationships = relationships; Links = links; }
private Tournament(string type, string id, TournamentRelationships relationships, ApiLink links) { Type = type; Id = id; Relationships = relationships; Links = links; }
private Match(string type, string id, MatchAttributes attributes, MatchRelationships relationships, ApiLink links) { Type = type; Id = id; Attributes = attributes; Relationships = relationships; Links = links; }
private Sample(string type, string id, SampleAttributes attributes, SampleRelationships relationships, ApiLink links) { Type = type; Id = id; Attributes = attributes; Relationships = relationships; Links = links; }
private Roster(string type, string id, RosterAttributes attributes, RosterRelationships relationships, ApiLink links) { Type = type; Id = id; Attributes = attributes; Relationships = relationships; Links = links; }
private Leaderboard(string type, string id, LeaderboardAttributes attributes, LeaderboardRelationships relationships, ApiLink links) { Type = type; Id = id; Attributes = attributes; Relationships = relationships; Links = links; }