import { IOrganization } from 'organization'; export interface Loyalty { discountType: string; percentage: number; amount: number; enabled: boolean; id: string; uri?: string; createdAt?: string; ownerUri?: string; consumerId?: string; rewards: []; amountUsed: number; owner?: IOrganization; }