Interface GetAppsResponse

interface GetAppsResponse {
    caseDetail: any[];
    id: string;
    launchPoints: LaunchPoint[];
    returnValue: boolean;
    subscribed: boolean;
    type: "error" | "response" | "registered" | "prompt";
}

Hierarchy

Properties

caseDetail: any[]
id: string
launchPoints: LaunchPoint[]
returnValue: boolean
subscribed: boolean
type: "error" | "response" | "registered" | "prompt"