@revolugo/booking-api-client
Version:
Javascript Revolugo Booking API Client (browser + server)
46 lines (45 loc) • 1.26 kB
TypeScript
/**
* Revolugo Booking API Reference
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 1.5.0
*
*
* 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 InvoiceApi
*/
export interface InvoiceApi {
/**
*
* @type {string}
* @memberof InvoiceApi
*/
type: InvoiceApiTypeEnum;
/**
*
* @type {string}
* @memberof InvoiceApi
*/
url: string;
}
/**
* @export
*/
export declare const InvoiceApiTypeEnum: {
readonly CreditNote: "credit_note";
readonly Invoice: "invoice";
};
export type InvoiceApiTypeEnum = typeof InvoiceApiTypeEnum[keyof typeof InvoiceApiTypeEnum];
/**
* Check if a given object implements the InvoiceApi interface.
*/
export declare function instanceOfInvoiceApi(value: object): boolean;
export declare function InvoiceApiFromJSON(json: any): InvoiceApi;
export declare function InvoiceApiFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceApi;
export declare function InvoiceApiToJSON(value?: InvoiceApi | null): any;