wallee
Version:
TypeScript/JavaScript client for wallee
27 lines (26 loc) • 816 B
TypeScript
declare class SubscriptionProductVersionRetirementCreate {
/**
* The product version that is to be retired.
*/
'productVersion': number;
/**
* Whether the subscriptions' termination periods should be respected.
*/
'respectTerminationPeriods'?: boolean;
/**
* The product to which the subscriptions with the retiring product version 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 { SubscriptionProductVersionRetirementCreate };