-
Notifications
You must be signed in to change notification settings - Fork 0
/
typings.d.ts
52 lines (52 loc) · 1.17 KB
/
typings.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
export interface VehicleOfInterest {
year: string
make: string
model: string
price: string
mileage: string
vin: string
cashDown: string
}
export interface CreditApplicant {
employedPrimary: string
firstName: string
middleName: string
lastName: string
phone: string
phoneType: string
email: string
dateOfBirth: string
ssn: string
addressLine1: string
city: string
state: string
zipCode: string
addressYears: string
addressMonths: string
rentMortgagePaymentAmount: string
licenseNumber?: string
licenseState?: string
employerName: string
employmentStatusCode: string
employerPhone: string
employmentTitle: string
timeOnJobYears: string
timeOnJobMonths: string
incomeAmount: string
previousEmployerName: string
prevEmployerPhone: string
prevEmploymentTitle: string
prevTimeOnJobYears: string
prevTimeOnJobMonths: string
prevIncomeAmount: string
prevAddressLine1: string
prevCity: string
prevState: string
prevZipCode: string
prevAddressYears: string
prevAddressMonths: string
prevRentMortgagePaymentAmount: string
otherIncomeSourceCode: string
otherIncomeAmount: string
otherIncomeSourceDescription: string
}