mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
20 lines
288 B
TypeScript
20 lines
288 B
TypeScript
/* tslint:disable */
|
|
import { LoyaltyBonItemResponse } from './loyalty-bon-item-response';
|
|
export interface LoyaltyBonResponse {
|
|
|
|
/**
|
|
* Bon Datum
|
|
*/
|
|
date?: string;
|
|
|
|
/**
|
|
* Positionen
|
|
*/
|
|
items?: Array<LoyaltyBonItemResponse>;
|
|
|
|
/**
|
|
* Summe
|
|
*/
|
|
total?: number;
|
|
}
|