/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ /** * An object representing internal details for a fee associated with an invoice. * @export * @interface InvoiceFee */ export interface InvoiceFee { /** * The type of fee. * @type {string} * @memberof InvoiceFee */ type: string; /** * The value or amount of the fee. * @type {number} * @memberof InvoiceFee */ value: number; } /** * Check if a given object implements the InvoiceFee interface. */ export declare function instanceOfInvoiceFee(value: object): boolean; export declare function InvoiceFeeFromJSON(json: any): InvoiceFee; export declare function InvoiceFeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): InvoiceFee; export declare function InvoiceFeeToJSON(value?: InvoiceFee | null): any;