Skip to content

Commit

Permalink
Merge pull request #711 from companieshouse/IDVA5-1133-What-is-your-e…
Browse files Browse the repository at this point in the history
…mail-address

updated acsp correspondence email to be optional in applicant details
  • Loading branch information
ttingle-ch authored Sep 18, 2024
2 parents ccd1505 + c8490e7 commit 216f9d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/services/acsp/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export interface ApplicantDetails {
countryOfResidence?: string;
correspondenceAddress?: Address;
correspondenceAddressIsSameAsRegisteredOfficeAddress?: boolean;
correspondenceEmail: string;
correspondenceEmail?: string;
}
export interface AcspData {
id: string;
Expand Down Expand Up @@ -79,7 +79,7 @@ export interface ApplicantDetailsDto {
country_of_residence?: string;
correspondence_address?: AddressDto;
correspondence_address_is_same_as_registered_office_address?: boolean;
correspondence_email: string;
correspondence_email?: string;
}
export interface AddressDto {
premises?: string;
Expand Down

0 comments on commit 216f9d7

Please sign in to comment.