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 DeleteTaxRateResponse */ export interface DeleteTaxRateResponse { /** * HTTP Response Status Code * @type {number} * @memberof DeleteTaxRateResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof DeleteTaxRateResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof DeleteTaxRateResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof DeleteTaxRateResponse */ resource: string; /** * Operation performed * @type {string} * @memberof DeleteTaxRateResponse */ operation: string; /** * * @type {UnifiedId} * @memberof DeleteTaxRateResponse */ data: UnifiedId; /** * * @type {Raw} * @memberof DeleteTaxRateResponse */ _raw?: Raw | null; } export declare function DeleteTaxRateResponseFromJSON(json: any): DeleteTaxRateResponse; export declare function DeleteTaxRateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeleteTaxRateResponse; export declare function DeleteTaxRateResponseToJSON(value?: DeleteTaxRateResponse | null): any;