RBWCM-SDK Documentation - v1.1.0
    Preparing search index...

    Interface Season

    Raw data structure for a Season within a Ranked System.

    interface Season {
        active: boolean;
        createdAt: Date;
        endedAt: Date | null;
        id: string;
        name: string;
        rankedSystemId: string;
        updatedAt: Date;
    }
    Index

    Properties

    active: boolean

    Whether the season is currently active.

    createdAt: Date

    Timestamp of when the season was created/started.

    endedAt: Date | null

    Timestamp of when the season ended. Null if currently active.

    id: string

    The unique internal database identifier.

    name: string

    The name of the season (e.g., 'Season 1').

    rankedSystemId: string

    The ID of the ranked system this season belongs to.

    updatedAt: Date

    Timestamp of the last update to this season.