masto
    Preparing search index...

    Interface AnnualReport

    Represents a summary of a user's activity during a given year.

    interface AnnualReport {
        accountId: string;
        data: AnnualReportData;
        schemaVersion: number;
        shareUrl?: string | null;
        year: number;
    }
    Index
    accountId: string

    The account ID the report is about.

    The raw data contained in the report. The schema of that data is dependent on the value of schema_version.

    schemaVersion: number

    The schema version of the report, defines how to interpret data.

    shareUrl?: string | null

    An optional link to a shareable version of the report.

    year: number

    The year this report is from.