@apideck/node
Version:
Apideck Node.js SDK
34 lines (33 loc) • 1.01 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.
*/
/**
*
* @export
* @interface InvoiceResponse
*/
export interface InvoiceResponse {
/**
* A unique identifier for an object.
* @type {string}
* @memberof InvoiceResponse
*/
readonly id?: string;
/**
* The third-party API ID of original entity
* @type {string}
* @memberof InvoiceResponse
*/
readonly downstream_id?: string | null;
}
export declare function InvoiceResponseFromJSON(json: any): InvoiceResponse;
export declare function InvoiceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceResponse;
export declare function InvoiceResponseToJSON(value?: InvoiceResponse | null): any;