Interface SerializedAccessory

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

Properties

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