wallee
Version:
TypeScript/JavaScript client for wallee
61 lines (60 loc) • 1.69 kB
TypeScript
import { SubscriptionPeriodBillState } from "./SubscriptionPeriodBillState";
import { SubscriptionVersion } from "./SubscriptionVersion";
declare class SubscriptionPeriodBill {
/**
* The date and time when the period bill was created.
*/
'createdOn'?: Date;
/**
* The date and time when the period actually ended.
*/
'effectivePeriodEndDate'?: Date;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The language that is linked to the object.
*/
'language'?: string;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
* The date and time when the period started.
*/
'periodStartDate'?: Date;
/**
* The date and time when the period is planned to end.
*/
'plannedPeriodEndDate'?: Date;
/**
* The date and time when the object is planned to be permanently removed. If the value is empty, the object will not be removed.
*/
'plannedPurgeDate'?: Date;
/**
* The object's current state.
*/
'state'?: SubscriptionPeriodBillState;
/**
* The subscription version that the period bill belongs to.
*/
'subscriptionVersion'?: SubscriptionVersion;
/**
* 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 { SubscriptionPeriodBill };