@appsemble/utils
Version:
Utility functions used in Appsemble internally
25 lines • 792 B
JavaScript
export const OrganizationSubscriptionPrice = {
type: 'object',
description: 'A subscription price holds pricing information about the subscription.',
required: ['basePrice'],
additionalProperties: false,
properties: {
totalPrice: {
type: 'number',
description: 'The total price.',
},
basePrice: {
type: 'number',
description: 'Base price without VAT',
},
vatPercentage: {
type: 'number',
description: 'The VAT that applies to the transaction.',
},
vatAmount: {
type: 'number',
description: 'The VAT amount that applies to the transaction.',
},
},
};
//# sourceMappingURL=OrganizationSubscriptionsPrice.js.map