wallee
Version:
TypeScript/JavaScript client for wallee
32 lines (31 loc) • 956 B
TypeScript
import { SubscriptionSuspensionAction } from "./SubscriptionSuspensionAction";
declare class SubscriptionSuspensionCreate {
/**
* Whether the subscription should be terminated or reactivated after the suspension has reached its end date.
*/
'endAction': SubscriptionSuspensionAction;
/**
* A note that contains details about the suspension. It is not disclosed to the subscriber.
*/
'note'?: string;
/**
* The date and time when the suspension is planned to end.
*/
'plannedEndDate': Date;
/**
* The subscription that this suspension belongs to.
*/
'subscription': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionSuspensionCreate };