/** * Finix API */ import { CreateSubscriptionAmountRequestFeeAmountData } from './createSubscriptionAmountRequestFeeAmountData'; /** * */ export declare class CreateSubscriptionAmountRequest { /** * `Subscription Amount` type. For subscriptions, the type is **FEE**. */ 'amountType': string; 'feeAmountData': CreateSubscriptionAmountRequestFeeAmountData; /** * Human readable name. */ 'nickname'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }