@maxio-com/advanced-billing-sdk
Version:
Ultimate billing and pricing flexibility for B2B SaaS. Maxio integrates directly into your product, so you can seamlessly manage your product catalog, bill customers, and collect payments.
19 lines • 893 B
TypeScript
/**
* AdvancedBilling
*
* This file was automatically generated for Maxio by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { Schema } from '../schema.js';
import { RefundPrepaymentAmount } from './containers/refundPrepaymentAmount.js';
export interface RefundPrepayment {
/** `amount` is not required if you pass `amount_in_cents`. */
amountInCents: bigint | null;
/** `amount_in_cents` is not required if you pass `amount`. */
amount: RefundPrepaymentAmount;
memo: string;
/** Specify the type of refund you wish to initiate. When the prepayment is external, the `external` flag is optional. But if the prepayment was made through a payment profile, the `external` flag is required. */
external?: boolean;
[key: string]: unknown;
}
export declare const refundPrepaymentSchema: Schema<RefundPrepayment>;
//# sourceMappingURL=refundPrepayment.d.ts.map