wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.18 kB
TypeScript
declare class SubscriptionProductComponentGroupUpdate {
/**
* The ID is the primary key of the entity. The ID identifies the entity uniquely.
*/
'id': number;
/**
* The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
*/
'version': 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'?: number;
/**
* When listing component groups, they can be sorted by this number.
*/
'sortOrder'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionProductComponentGroupUpdate };