react-spa-template/src/lib/api/merchant/models/customerLoyaltyTriggerDto.ts

12 lines
342 B
TypeScript

/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
import type { triggerEffect } from './triggerEffect';
export type customerLoyaltyTriggerDto = {
effect?: triggerEffect;
readonly type?: 'customer_loyalty' | null;
customerValue: string | null;
};