wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 870 B
TypeScript
declare class SubscriptionComponentConfiguration {
/**
* The component that is being configured.
*/
'component'?: number;
/**
* A unique identifier for the object.
*/
'id'?: number;
/**
* The ID of the space this object belongs to.
*/
'linkedSpaceId'?: number;
/**
* The quantity that should be applied to the component.
*/
'quantity'?: 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 { SubscriptionComponentConfiguration };