/** * Finix API */ /** * Object detailing any [Buyer Charges](/guides/payments/making-a-payment/buyer-charges/) that got included in the `Authorization`. */ export declare class AdditionalBuyerCharges { /** * Include the convenience fee the merchant is charging the buyer for the transaction when creating a `Transfer` or an `Authorization`. */ 'convenienceAmount'?: number | null; /** * Include the rent surcharge the merchant is charging the buyer for the transaction when creating a `Transfer` or an `Authorization`. */ 'rentSurchargeAmount'?: number | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }