SW Combine SDK
    Preparing search index...

    Interface CharacterMe

    interface CharacterMe {
        attributes?: Record<string, string>;
        biography?: string;
        creditlog?: CharacterMeCreditlog;
        credits?: CharacterMeCredits;
        events?: CharacterMeEvents;
        faction?: CharacterMeReference;
        factions?: CharacterMeFactionEntry[];
        force?: CharacterMeForceInfo;
        gender?: string;
        health?: number;
        healthMax?: number;
        image?: string;
        inventories?: Record<string, unknown>;
        lastlogin?: CharacterMeLastLogin;
        location?: CharacterMeLocation;
        name: string;
        privileges?: CharacterMePrivileges;
        race?: CharacterMeReference;
        shortdescription?: string;
        skills?: CharacterMeSkills;
        uid: string;
        xp?: number;
        xpLevel?: number;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    attributes?: Record<string, string>
    biography?: string
    gender?: string
    health?: number
    healthMax?: number
    image?: string
    inventories?: Record<string, unknown>
    name: string
    shortdescription?: string
    uid: string
    xp?: number
    xpLevel?: number