UNPKG

wallee

Version:
27 lines (26 loc) 779 B
declare class SubscriptionProductRetirementCreate { /** * The product that is to be retired. */ 'product': number; /** * 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'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { SubscriptionProductRetirementCreate };