| AttributeValueDataPacketConverter | Custom converter for AttributeValues. Which is needed because AttributeValues have a dynamic structure. |
| AttributeValueDataPacketSpecifiedConcreteClassConverter | |
| DateConverter | |
| DateTimeConverter | |
| DefinitionConcreteClassConverter | |
| DefinitionConverter | |
| MatchIdConverter | |
| ParticipantConverter | Custom converter class to deserialize the abstract class Participant into one of its Concrete classes. Typeically can rely on the standard JsonConverter that looks at the $type variable to know what Concrete class to deserialize to. However, the value from $type is specific to a Media class, and not BabelFish, so the values don't match. Thus, we need to write our own converter. Recipe comes from https://stackoverflow.com/questions/20995865/deserializing-json-to-abstract-class |
| ParticipantSpecifiedConcreteClassConverter | |
| ScoreAverageBaseConverter | Custom converter class to deserialize the abstract class SquaddingAssignment into one of its Concrete classes. Typeically can rely on the standard JsonConverter that looks at the $type variable to know what Concrete class to deserialize to. However, the value from $type is specific to a Media class, and not BabelFish, so the values don't match. Thus, we need to write our own converter. Recipe comes from https://stackoverflow.com/questions/20995865/deserializing-json-to-abstract-class |
| ScoreAverageBaseSpecifiedConcreteClassConverter | |
| ScoreHistoryBaseConverter | Custom converter class to deserialize the abstract class SquaddingAssignment into one of its Concrete classes. Typeically can rely on the standard JsonConverter that looks at the $type variable to know what Concrete class to deserialize to. However, the value from $type is specific to a Media class, and not BabelFish, so the values don't match. Thus, we need to write our own converter. Recipe comes from https://stackoverflow.com/questions/20995865/deserializing-json-to-abstract-class |
| ScoreHistoryBaseSpecifiedConcreteClassConverter | |
| SetNameConverter | |
| ShowWhenBaseConverter | Custom converter class to deserialize the abstract class ShowWhenBase into one of its Concrete classes. Typeically can rely on the standard JsonConverter that looks at the $type variable to know what Concrete class to deserialize to. However, the value from $type is specific to a Media class, and not BabelFish, so the values don't match. Thus, we need to write our own converter. Recipe comes from https://stackoverflow.com/questions/20995865/deserializing-json-to-abstract-class |
| ShowWhenBaseSpecifiedConcreteClassConverter | |
| TieBreakingRuleBaseSpecifiedConcreteClassConverter | |
| TieBreakingRuleConverter | Custom converter class to deserialize the abstract class TieBreakingRule into one of its Concrete classes. Typeically can rely on the standard JsonConverter that looks at the $type variable to know what Concrete class to deserialize to. However, the value from $type is specific to a Media class, and not BabelFish, so the values don't match. Thus, we need to write our own converter. Recipe comes from https://stackoverflow.com/questions/20995865/deserializing-json-to-abstract-class |
| VersionConverter |