Provides information for filtering a list of translation jobs. For more information, see ListTextTranslationJobs.

interface TextTranslationJobFilter {
    JobName?: string;
    JobStatus?: JobStatus;
    SubmittedAfterTime?: Date;
    SubmittedBeforeTime?: Date;
}

Properties

JobName?: string

Filters the list of jobs by name.

JobStatus?: JobStatus

Filters the list of jobs based by job status.

SubmittedAfterTime?: Date

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted after the specified time. Jobs are returned in descending order, newest to oldest.

SubmittedBeforeTime?: Date

Filters the list of jobs based on the time that the job was submitted for processing and returns only the jobs submitted before the specified time. Jobs are returned in ascending order, oldest to newest.