Interface AppActionCallRawResponseProps

interface AppActionCallRawResponseProps {
    response: {
        body: string;
        headers?: {
            contentType?: string;
        };
    };
    sys: {
        appAction: SysLink;
        appInstallation: SysLink;
        createdAt: string;
        environment: SysLink;
        id: string;
        space: SysLink;
        type: "AppActionCallResponse";
    };
}

Properties

Properties

response: {
    body: string;
    headers?: {
        contentType?: string;
    };
}
sys: {
    appAction: SysLink;
    appInstallation: SysLink;
    createdAt: string;
    environment: SysLink;
    id: string;
    space: SysLink;
    type: "AppActionCallResponse";
}