@apideck/node
Version:
Apideck Node.js SDK
66 lines (65 loc) • 1.66 kB
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.
*/
import { Raw } from './Raw';
import { UnifiedId } from './UnifiedId';
/**
*
* @export
* @interface DeleteJobResponse
*/
export interface DeleteJobResponse {
/**
* HTTP Response Status Code
* @type {number}
* @memberof DeleteJobResponse
*/
status_code: number;
/**
* HTTP Response Status
* @type {string}
* @memberof DeleteJobResponse
*/
status: string;
/**
* Apideck ID of service provider
* @type {string}
* @memberof DeleteJobResponse
*/
service: string;
/**
* Unified API resource name
* @type {string}
* @memberof DeleteJobResponse
*/
resource: string;
/**
* Operation performed
* @type {string}
* @memberof DeleteJobResponse
*/
operation: string;
/**
*
* @type {UnifiedId}
* @memberof DeleteJobResponse
*/
data: UnifiedId;
/**
*
* @type {Raw}
* @memberof DeleteJobResponse
*/
_raw?: Raw | null;
}
export declare function DeleteJobResponseFromJSON(json: any): DeleteJobResponse;
export declare function DeleteJobResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteJobResponse;
export declare function DeleteJobResponseToJSON(value?: DeleteJobResponse | null): any;