Table of Contents

Class Serie

Namespace
TcgDex.Models
Assembly
TcgDex.CSharpSdk.dll

A full series, as returned by the single-series endpoint. Includes its sets.

public sealed record Serie : IEquatable<Serie>

Inheritance

Implements

Inherited Members

Properties

FirstSet

The earliest set in the series.

public SetBrief? FirstSet { get; init; }

Property Value

SetBrief?

Id

The series identifier, for example "swsh".

public required string Id { get; init; }

Property Value

string

LastSet

The most recent set in the series.

public SetBrief? LastSet { get; init; }

Property Value

SetBrief?

Logo image URL, without file extension.

public string? Logo { get; init; }

Property Value

string?

Name

The series' display name.

public required string Name { get; init; }

Property Value

string

ReleaseDate

Release date of the series' first set, in yyyy-MM-dd form.

public string? ReleaseDate { get; init; }

Property Value

string?

Sets

The sets belonging to this series.

public IReadOnlyList<SetBrief> Sets { get; init; }

Property Value

IReadOnlyList<SetBrief>