QuickCommandResponse: {
    creator: string | null;
    custom_inputs?: CustomInputResponse[] | null;
    description?: string | null;
    final_result?: string | null;
    flow?: object | null;
    id: string;
    name?: string | null;
    preserve_conversation?: boolean | null;
    return_type?: QuickCommandsReturnType | null;
    slug: string;
    steps?:
        | (QuickCommandStepFetchResponse | QuickCommandStepLlmResponse)[]
        | null;
    studio_id?: string | null;
    type?: QuickCommandTypeRequest | null;
    use_selected_code?: boolean | null;
    visibility_level: string;
}

Type declaration