UNPKG

wallee

Version:
44 lines (43 loc) 1.25 kB
import { SubscriptionProduct } from "./SubscriptionProduct"; declare class SubscriptionProductRetirement { /** * The date and time when the object was created. */ 'createdOn'?: Date; /** * A unique identifier for the object. */ 'id'?: number; /** * The ID of the space this object belongs to. */ 'linkedSpaceId'?: number; /** * The product that is to be retired. */ 'product'?: SubscriptionProduct; /** * Whether the subscriptions' termination periods should be respected. */ 'respectTerminationPeriods'?: boolean; /** * The product to which the subscriptions with the retiring product are to be migrated. If none is defined, the subscriptions are terminated. */ 'targetProduct'?: SubscriptionProduct; /** * The version is used for optimistic locking and incremented whenever the object is updated. */ 'version'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { SubscriptionProductRetirement };