interface ListStringsOntheWorkflowStepOptions {
    languageIds?: string;
    limit?: number;
    offset?: number;
    orderBy?: string;
    status?:
        | "done"
        | "pending"
        | "todo"
        | "incomplete"
        | "need_review";
}

Hierarchy (view full)

Properties

languageIds?: string
limit?: number
offset?: number
orderBy?: string
status?:
    | "done"
    | "pending"
    | "todo"
    | "incomplete"
    | "need_review"