UNPKG

@apideck/node

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