@apideck/node
Version:
Apideck Node.js SDK
42 lines (41 loc) • 979 B
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface JobLinks
*/
export interface JobLinks {
/**
*
* @type {string}
* @memberof JobLinks
*/
type?: JobLinksType;
/**
*
* @type {string}
* @memberof JobLinks
*/
url?: string;
}
/**
* @export
* @enum {string}
*/
export declare enum JobLinksType {
portal = "job_portal",
description = "job_description"
}
export declare function JobLinksFromJSON(json: any): JobLinks;
export declare function JobLinksFromJSONTyped(json: any, ignoreDiscriminator: boolean): JobLinks;
export declare function JobLinksToJSON(value?: JobLinks | null): any;