UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.68 kB
/** * 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 DeleteFileResponse */ export interface DeleteFileResponse { /** * HTTP Response Status Code * @type {number} * @memberof DeleteFileResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof DeleteFileResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof DeleteFileResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof DeleteFileResponse */ resource: string; /** * Operation performed * @type {string} * @memberof DeleteFileResponse */ operation: string; /** * * @type {UnifiedId} * @memberof DeleteFileResponse */ data: UnifiedId; /** * * @type {Raw} * @memberof DeleteFileResponse */ _raw?: Raw | null; } export declare function DeleteFileResponseFromJSON(json: any): DeleteFileResponse; export declare function DeleteFileResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteFileResponse; export declare function DeleteFileResponseToJSON(value?: DeleteFileResponse | null): any;