-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
save director information api call temp
- Loading branch information
Showing
2 changed files
with
35 additions
and
21 deletions.
There are no files selected for viewing
34 changes: 23 additions & 11 deletions
34
src/libs/API/parameters/SaveCorpayOnboardingDirectorInformationParams.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,36 @@ | ||
type SaveCorpayOnboardingDirectorInformation = { | ||
import type {FileObject} from '@components/AttachmentModal'; | ||
|
||
// secondSignerFullName?: string; | ||
// secondSignerDateOfBirth?: string; | ||
// secondSignerJobTitle?: string; | ||
// secondSignerEmail?: string; | ||
// secondSignerCompleteResidentialAddress?: string; | ||
|
||
type SaveCorpayOnboardingCompanyDirector = { | ||
signerFullName: string; | ||
signerDateOfBirth: string; | ||
signerJobTitle: string; | ||
signerEmail: string; | ||
signerCompleteResidentialAddress: string; | ||
secondSignerFullName?: string; | ||
secondSignerDateOfBirth?: string; | ||
secondSignerJobTitle?: string; | ||
secondSignerEmail?: string; | ||
secondSignerCompleteResidentialAddress?: string; | ||
}; | ||
|
||
type SaveCorpayOnboardingDirectorInformation = { | ||
companyDirectors: SaveCorpayOnboardingCompanyDirector[]; | ||
proofOfDirectors?: FileObject | string; | ||
copyOfID?: FileObject | string; | ||
addressProof?: FileObject | string; | ||
codiceProof?: FileObject | string; | ||
pdsAndFSG?: FileObject | string; | ||
}; | ||
|
||
type SaveCorpayOnboardingDirectorInformationParams = { | ||
inputs: string; | ||
bankAccountID: number; | ||
proofOfDirectors?: File; | ||
copyOfID?: File; | ||
addressProof?: File; | ||
codiceProof?: File; | ||
pdsAndFSG?: File; | ||
proofOfDirectors?: FileObject | string; | ||
copyOfID?: FileObject | string; | ||
addressProof?: FileObject | string; | ||
codiceProof?: FileObject | string; | ||
pdsAndFSG?: FileObject | string; | ||
}; | ||
|
||
export type {SaveCorpayOnboardingDirectorInformation, SaveCorpayOnboardingDirectorInformationParams}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters