The payload for the getServiceJobs operation.

Export

JobListing

interface JobListing {
    jobs?: ServiceJob[];
    nextPageToken?: string;
    previousPageToken?: string;
    totalResultSize?: number;
}

Properties

jobs?: ServiceJob[]

List of job details for the given input.

Memberof

JobListing

nextPageToken?: string

A generated string used to pass information to your next request. If nextPageToken is returned, pass the value of nextPageToken to the pageToken to get next results.

Memberof

JobListing

previousPageToken?: string

A generated string used to pass information to your next request. If previousPageToken is returned, pass the value of previousPageToken to the pageToken to get previous page results.

Memberof

JobListing

totalResultSize?: number

Total result size of the query result.

Memberof

JobListing