Interface SerializedAccessory

interface SerializedAccessory {
    UUID: string;
    category: Categories;
    controllers?: SerializedControllerContext[];
    displayName: string;
    lastKnownUsername?: string;
    linkedServices?: Record<string, string[]>;
    services: SerializedService[];
}

Properties

UUID: string
category: Categories
displayName: string
lastKnownUsername?: string
linkedServices?: Record<string, string[]>
services: SerializedService[]