Skip to content

Commit 602e243

Browse files
committed
Add null values to director options
1 parent fe4d682 commit 602e243

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/services/order/certificates/types.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -161,13 +161,13 @@ export interface ItemOptionsRequest {
161161
}
162162

163163
export interface DirectorOrSecretaryDetailsRequest {
164-
includeAddress?: boolean;
165-
includeAppointmentDate?: boolean;
164+
includeAddress?: boolean | null;
165+
includeAppointmentDate?: boolean | null;
166166
includeBasicInformation: boolean | null;
167-
includeCountryOfResidence?: boolean;
167+
includeCountryOfResidence?: boolean | null;
168168
includeDobType?: string | null;
169-
includeNationality?: boolean;
170-
includeOccupation?: boolean;
169+
includeNationality?: boolean | null;
170+
includeOccupation?: boolean | null;
171171
}
172172

173173
export interface RegisteredOfficeAddressDetailsRequest {

0 commit comments

Comments
 (0)