Torn API Client
    Preparing search index...

    Type Alias KeyInfoResponse

    type KeyInfoResponse = {
        info: {
            access: {
                company: boolean;
                faction: boolean;
                level: number;
                log: { available: KeyInfoAvailableLog[]; custom_permissions: boolean };
                type: ApiKeyAccessTypeEnum;
            };
            selections: {
                company: string[];
                faction: FactionSelectionName[];
                forum: ForumSelectionName[];
                key: KeySelectionName[];
                market: MarketSelectionName[];
                property: string[];
                racing: RacingSelectionName[];
                torn: TornSelectionName[];
                user: UserSelectionName[];
            };
            user: {
                company_id: CompanyId
                | null;
                faction_id: FactionId | null;
                id: UserId;
            };
        };
    }
    Index

    Properties

    Properties

    info: {
        access: {
            company: boolean;
            faction: boolean;
            level: number;
            log: { available: KeyInfoAvailableLog[]; custom_permissions: boolean };
            type: ApiKeyAccessTypeEnum;
        };
        selections: {
            company: string[];
            faction: FactionSelectionName[];
            forum: ForumSelectionName[];
            key: KeySelectionName[];
            market: MarketSelectionName[];
            property: string[];
            racing: RacingSelectionName[];
            torn: TornSelectionName[];
            user: UserSelectionName[];
        };
        user: {
            company_id: CompanyId
            | null;
            faction_id: FactionId | null;
            id: UserId;
        };
    }