File

projects/core/src/model/customer-coupon.model.ts

Index

Properties

Properties

allProductsApplicable
allProductsApplicable: boolean
Type : boolean
Optional
couponId
couponId: string
Type : string
Optional
description
description: string
Type : string
Optional
endDate
endDate: string
Type : string
Optional
name
name: string
Type : string
Optional
notificationOn
notificationOn: boolean
Type : boolean
Optional
startDate
startDate: string
Type : string
Optional
status
status: string
Type : string
Optional
import { User } from './misc.model';
import { Pagination, Sort } from './unused.model';

export interface CustomerCoupon {
  couponId?: string;
  name?: string;
  startDate?: string;
  endDate?: string;
  status?: string;
  description?: string;
  notificationOn?: boolean;
  allProductsApplicable?: boolean;
}

export interface CustomerCouponNotification {
  coupon?: CustomerCoupon;
  customer?: User;
  status?: string;
}

export interface CustomerCouponSearchResult {
  coupons?: CustomerCoupon[];
  sorts?: Sort[];
  pagination?: Pagination;
}

export interface CustomerCoupon2Customer {
  coupon?: CustomerCoupon;
  customer?: User;
}

result-matching ""

    No results matching ""