MobX Lark
    Preparing search index...

    Interface TaskFilter

    interface TaskFilter {
        attachments?: (IDType | TaskAttachment[]) & (IDType[] | TaskAttachment[]);
        completed?: boolean;
        completed_at?: string;
        created_at?: string;
        created_from: string;
        created_to: string;
        creator?: IDType | TaskOperator;
        custom_complete?: IDType | Record<"pc" | "ios" | "android", TaskCompletion>;
        custom_fields?: (IDType | TaskFieldValue[]) & (IDType[] | TaskFieldValue[]);
        dependencies?: (IDType | TaskDependency[]) & (IDType[] | TaskDependency[]);
        description?: string;
        due?: IDType | TaskTimeEnd;
        extra?: string;
        guid?: string;
        is_milestone?: boolean;
        members?: (IDType | TaskOperator[]) & (IDType[] | TaskOperator[]);
        mode?: number;
        name?: string;
        origin?:
            | IDType
            | {
                href: Record<"url" | "title", string>;
                platform_i18n_name: TranslationMap;
            };
        owner?: IDType
        | TaskOperator;
        parent_task_guid?: string;
        reminders?: (IDType | { id?: string | undefined; relative_fire_minute: number; }[]) & (IDType[] | { id?: string | undefined; relative_fire_minute: number; }[]);
        repeat_rule?: string;
        resource_id?: string;
        resource_type?: TaskResourceType;
        source?: number;
        start?: IDType | TaskTimeEnd;
        status?: "todo" | "done";
        subtask_count?: number;
        summary?: string;
        task_id?: string;
        tasklists?: (IDType | Partial<Record<"tasklist_guid" | "section_guid", string>>[]) & (IDType[] | Partial<Record<"tasklist_guid" | "section_guid", string>>[]);
        updated_at?: string;
        url?: string;
        user_id_type?: "open_id" | "union_id" | "user_id";
    }

    Hierarchy (View Summary)

    Index

    Properties

    attachments?: (IDType | TaskAttachment[]) & (IDType[] | TaskAttachment[])
    completed?: boolean
    completed_at?: string
    created_at?: string
    created_from: string
    created_to: string
    creator?: IDType | TaskOperator
    custom_complete?: IDType | Record<"pc" | "ios" | "android", TaskCompletion>
    custom_fields?: (IDType | TaskFieldValue[]) & (IDType[] | TaskFieldValue[])
    dependencies?: (IDType | TaskDependency[]) & (IDType[] | TaskDependency[])
    description?: string
    due?: IDType | TaskTimeEnd
    extra?: string
    guid?: string
    is_milestone?: boolean
    members?: (IDType | TaskOperator[]) & (IDType[] | TaskOperator[])
    mode?: number
    name?: string
    origin?:
        | IDType
        | {
            href: Record<"url" | "title", string>;
            platform_i18n_name: TranslationMap;
        }
    owner?: IDType | TaskOperator
    parent_task_guid?: string
    reminders?: (IDType | { id?: string | undefined; relative_fire_minute: number; }[]) & (IDType[] | { id?: string | undefined; relative_fire_minute: number; }[])
    repeat_rule?: string
    resource_id?: string
    resource_type?: TaskResourceType
    source?: number
    start?: IDType | TaskTimeEnd
    status?: "todo" | "done"
    subtask_count?: number
    summary?: string
    task_id?: string
    tasklists?: (IDType | Partial<Record<"tasklist_guid" | "section_guid", string>>[]) & (IDType[] | Partial<Record<"tasklist_guid" | "section_guid", string>>[])
    updated_at?: string
    url?: string
    user_id_type?: "open_id" | "union_id" | "user_id"