/** * Finix API */ import { SubscriptionEnrollmentLinks } from './subscriptionEnrollmentLinks'; /** * */ export declare class SubscriptionEnrollment { /** * ID of the `subscription_enrollment`. */ 'id'?: string; /** * Timestamp of when the object was created. */ 'createdAt'?: Date; /** * Timestamp of when the object was last updated. */ 'updatedAt'?: Date; /** * ID of the `User` who created the `subscription_enrollment`. */ 'createdBy'?: string; /** * When the `subscription_enrollment` will end in **DateTime** format. */ 'endedAt'?: string | null; /** * ID of the `Merchant` resource. */ 'merchant'?: string; /** * Human readable name. */ 'nickname'?: string; /** * When the `subscription_enrollment` will begin in **DateTime** format. */ 'startedAt'?: 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'?: SubscriptionEnrollmentLinks; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }