Class Booster
- Namespace
- TcgDex.Models
- Assembly
- TcgDex.CSharpSdk.dll
A booster pack a card can be pulled from.
public sealed record Booster : IEquatable<Booster>Inheritance
Implements
Inherited Members
Remarks
Only TcgDex.Models.Booster.Id and TcgDex.Models.Booster.Name have been observed in REST responses; the remaining fields are declared by the GraphQL schema and are treated as optional.
Properties
ArtworkBack
Back artwork URL.
[JsonPropertyName("artwork_back")]
public string? ArtworkBack { get; init; }Property Value
ArtworkFront
Front artwork URL.
[JsonPropertyName("artwork_front")]
public string? ArtworkFront { get; init; }Property Value
Id
Stable identifier, for example "boo_A4-ho-oh".
public required string Id { get; init; }Property Value
Logo
Logo image URL.
public string? Logo { get; init; }Property Value
Name
The booster's display name.
public string? Name { get; init; }