wallee
Version:
TypeScript/JavaScript client for wallee
52 lines (51 loc) • 1.58 kB
TypeScript
import { PersistableCurrencyAmountUpdate } from "./PersistableCurrencyAmountUpdate";
declare class ProductSetupFeeUpdate {
/**
* 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 product component that the fee belongs to.
*/
'component'?: number;
/**
* The localized description of the fee that is displayed to the customer.
*/
'description'?: {
[]: string;
};
/**
* The localized name of the fee that is displayed to the customer.
*/
'name'?: {
[]: string;
};
/**
* The amount charged to the customer when a subscription is downgraded.
*/
'onDowngradeCreditedAmount'?: Array<PersistableCurrencyAmountUpdate>;
/**
* The amount charged to the customer when a subscription is upgraded.
*/
'onUpgradeCreditedAmount'?: Array<PersistableCurrencyAmountUpdate>;
/**
* The amount charged to the customer once when they subscribe to a subscription.
*/
'setupFee'?: Array<PersistableCurrencyAmountUpdate>;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ProductSetupFeeUpdate };