/** * Finix API */ import { SubscriptionAmountFeeAmountData } from './subscriptionAmountFeeAmountData'; import { SubscriptionAmountLinks } from './subscriptionAmountLinks'; /** * */ export declare class SubscriptionAmount { /** * ID of the `Subscription Amount`. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * `Subscription Amount` type. The only type supported as of now is **FEE**. */ 'amountType'?: SubscriptionAmount.AmountTypeEnum | string; /** * The ID of the `User` that created the `Subscription Amount`. */ 'createdBy'?: string; 'feeAmountData'?: SubscriptionAmountFeeAmountData; /** * Human readable name. */ 'nickname'?: string; /** * ID of the `Subscription Schedule`. */ 'subscriptionSchedule'?: string; /** * Key value pair for annotating custom meta data (e.g. order numbers). */ 'tags'?: { [key: string]: string; } | null; 'links'?: SubscriptionAmountLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace SubscriptionAmount { enum AmountTypeEnum { Fee } }