mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- Regenerated all Swagger API clients (availability, checkout, crm, isa, print, wws) - Updated CRM loyalty card API endpoints (removed interests, added booking/bon management) - Temporarily disabled interests form block functionality due to API changes - Removed deprecated models (check-loyalty-card-result, loyalty-card-status, entity-key-value) - Added new loyalty booking and bon management models and services
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
/* tslint:disable */
|
|
import { TouchedBase } from './touched-base';
|
|
import { PriceValueDTO } from './price-value-dto';
|
|
import { VATValueDTO } from './vatvalue-dto';
|
|
export interface PriceDTO extends TouchedBase{
|
|
value?: PriceValueDTO;
|
|
vat?: VATValueDTO;
|
|
}
|