The payload for the getServiceJobs operation.

JobListing

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

Properties

jobs?: ServiceJob[]

List of job details for the given input.

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.

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.

JobListing

totalResultSize?: number

Total result size of the query result.

JobListing