/* tslint:disable */ /* eslint-disable */ /** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { exists, mapValues } from '../runtime'; /** * * @export * @interface VeritoneJobList */ export interface VeritoneJobList { /** * * @type {Array<{ [key: string]: string | undefined; }>} * @memberof VeritoneJobList */ jobs: Array<{ [key: string]: string | undefined; }>; /** * * @type {number} * @memberof VeritoneJobList */ count: number; } export function VeritoneJobListFromJSON(json: any): VeritoneJobList { return VeritoneJobListFromJSONTyped(json, false); } export function VeritoneJobListFromJSONTyped(json: any, ignoreDiscriminator: boolean): VeritoneJobList { if ((json === undefined) || (json === null)) { return json; } return { 'jobs': json['jobs'], 'count': json['count'], }; } export function VeritoneJobListToJSON(value?: VeritoneJobList | null): any { if (value === undefined) { return undefined; } if (value === null) { return null; } return { 'jobs': value.jobs, 'count': value.count, }; }