interface Loadout {
    Guns: (LoadoutGun | LoadoutGunWithCharm)[];
    Identity: {
        AccountLevel: number;
        HideAccountLevel: boolean;
        PlayerCardID: string;
        PlayerTitleID: string;
        PreferredLevelBorderID: string;
    };
    Incognito: boolean;
    Sprays: {
        EquipSlotID: string;
        SprayID: string;
        SprayLevelID: any;
    }[];
    Subject: string;
    Version: number;
}

Properties

Identity: {
    AccountLevel: number;
    HideAccountLevel: boolean;
    PlayerCardID: string;
    PlayerTitleID: string;
    PreferredLevelBorderID: string;
}
Incognito: boolean
Sprays: {
    EquipSlotID: string;
    SprayID: string;
    SprayLevelID: any;
}[]
Subject: string
Version: number