deriv_api_schema/
document_type.rs1
2use serde::{Deserialize, Serialize};
7
8
9
10
11#[derive(Debug, Clone, Serialize, Deserialize)] #[serde(rename_all = "snake_case")]
16pub enum DocumentType {
17 Passport,
18 NationalIdentityCard,
19 IdentificationNumberDocument,
20 ServiceIdCard,
21 DrivingLicence,
22 UtilityBill,
23 Bankstatement,
24 BankStatement,
25 PowerOfAttorney,
26 Amlglobalcheck,
27 Docverification,
28 Proofid,
29 Driverslicense,
30 Proofaddress,
31 Other,
32 VoterCard,
33 StudentCard,
34 NimcSlip,
35 BirthCertificate,
36 PanCard,
37 TaxPhotoId,
38 SelfieWithId,
39 PoiOthers,
40 InsuranceBill,
41 TaxReceipt,
42 PhoneBill,
43 PoaOthers,
44 ProofOfOwnership,
45 TaxReturn,
46 EmploymentContract,
47 Brokerage_Statement,
48 Payslip,
49 EddOthers,
50 Coi,
51 BusinessPoa,
52 ArticleOfAssociation,
53 Memorandum,
54 AuthorisationLetter,
55 Declarations,
56 Affidavit,
57 OfficialLetter,
58 RentalAgreement,
59 BusinessDocumentsOthers,
60}
61
62