/** * Finix API */ import { Currency } from './currency'; /** * The amount and currency of this `Subsciption Amount`. */ export declare class SubscriptionAmountFeeAmountData { /** * A positive integer in cents representing how much to charge on a recurring basis */ 'amount'?: number; 'currency'?: Currency; /** * The display name of the `Subscription Amount` that can be used for filtering purposes. */ 'label'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }