wallee
Version:
TypeScript/JavaScript client for wallee
46 lines (45 loc) • 1.29 kB
TypeScript
import { SubscriptionProductVersion } from "./SubscriptionProductVersion";
declare class SubscriptionProductComponentGroup {
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
* The localized name of the component group that is displayed to the customer.
*/
'name'?: {
[]: string;
};
/**
* Whether the component group is optional, i.e. the customer does not have to select any component.
*/
'optional'?: boolean;
/**
* The product version that the component group belongs to.
*/
'productVersion'?: SubscriptionProductVersion;
/**
* When listing component groups, they can be sorted by this number.
*/
'sortOrder'?: number;
/**
* 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 { SubscriptionProductComponentGroup };