wallee
Version:
TypeScript/JavaScript client for wallee
23 lines (22 loc) • 619 B
TypeScript
declare class SubscriptionComponentReferenceConfiguration {
/**
* The ID of the component reference that is being configured.
*/
'productComponentReferenceId'?: number;
/**
* The quantity that should be applied to the component.
*/
'quantity'?: number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriptionComponentReferenceConfiguration };