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