UNPKG

@apideck/node

Version:
66 lines (65 loc) 1.67 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 { TaxRate } from './TaxRate'; /** * * @export * @interface GetTaxRateResponse */ export interface GetTaxRateResponse { /** * HTTP Response Status Code * @type {number} * @memberof GetTaxRateResponse */ status_code: number; /** * HTTP Response Status * @type {string} * @memberof GetTaxRateResponse */ status: string; /** * Apideck ID of service provider * @type {string} * @memberof GetTaxRateResponse */ service: string; /** * Unified API resource name * @type {string} * @memberof GetTaxRateResponse */ resource: string; /** * Operation performed * @type {string} * @memberof GetTaxRateResponse */ operation: string; /** * * @type {TaxRate} * @memberof GetTaxRateResponse */ data: TaxRate; /** * * @type {Raw} * @memberof GetTaxRateResponse */ _raw?: Raw | null; } export declare function GetTaxRateResponseFromJSON(json: any): GetTaxRateResponse; export declare function GetTaxRateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTaxRateResponse; export declare function GetTaxRateResponseToJSON(value?: GetTaxRateResponse | null): any;