import { MatchAnalysisJudgement, MatchAnalysisProfileDetails } from "../judgement"; import { YesNo, YesNoOpt } from '../../../member/types'; export interface MatchReportPets { calcs: MatchReportPetsCalcs; pd: MatchReportPetsPD; ipd: MatchReportPetsIPD; } export interface MatchReportPetsCalcs { has_pets: MatchAnalysisJudgement; } export interface MatchReportPetsPD { pets_type: MatchAnalysisProfileDetails; r_disc_1: MatchAnalysisProfileDetails; r_disc_2: MatchAnalysisProfileDetails; r_notes: MatchAnalysisProfileDetails; } export interface MatchReportPetsIPD { has_pet_allergy: MatchAnalysisProfileDetails; }