import { ID } from '../../commonStateTypes/common'; import { ZeniDate } from '../../zeniDayJS'; import { User } from '../user/userState'; import { CustomerRatingCodeType, TeamRatingCodeType } from './customerSatisfactionState'; export interface CustomerSatisfactionInfo { customerNote: string; teamNote: string; customerRating?: CustomerRatingCodeType; customerRatingLastUpdatedBy?: User; customerRatingLastUpdatedDate?: ZeniDate; customerSatisfactionId?: ID; teamRating?: TeamRatingCodeType; teamRatingLastUpdatedBy?: User; teamRatingLastUpdatedDate?: ZeniDate; }