@getopenpay/client
Version:
OpenPay API TypeScript SDK
33 lines (32 loc) • 1.08 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* 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 InvoiceItemDetails
*/
export interface InvoiceItemDetails {
/**
*
* @type {string}
* @memberof InvoiceItemDetails
*/
description?: string | null;
}
/**
* Check if a given object implements the InvoiceItemDetails interface.
*/
export declare function instanceOfInvoiceItemDetails(value: object): value is InvoiceItemDetails;
export declare function InvoiceItemDetailsFromJSON(json: any): InvoiceItemDetails;
export declare function InvoiceItemDetailsFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceItemDetails;
export declare function InvoiceItemDetailsToJSON(json: any): InvoiceItemDetails;
export declare function InvoiceItemDetailsToJSONTyped(value?: InvoiceItemDetails | null, ignoreDiscriminator?: boolean): any;