@dvsa/smc-encounter-schema
Version:
Schemas required for Encounter submission as well as custom validators ## Developing ### Pre-requisites
14 lines (11 loc) • 369 B
TypeScript
import { JourneyType } from './JourneyType.js';
import { PortOfExit } from './PortOfExit.js';
declare class Journey {
private static readonly REG_EX_JOURNEY;
goodsCarried?: string | null;
journeyStartLctn?: string | null;
journeyEndLocatn?: string | null;
journeyType: JourneyType | null;
portOfExit?: PortOfExit | null;
}
export { Journey };