|
@@ -0,0 +1,129 @@
|
|
|
+//
|
|
|
+// FirstApplicantName.swift
|
|
|
+// Fiscus
|
|
|
+//
|
|
|
+// Created by Suraj Kumar Mandal on 20/02/24.
|
|
|
+//
|
|
|
+
|
|
|
+import Foundation
|
|
|
+
|
|
|
+// MARK: - FirstApplicantName
|
|
|
+struct FirstApplicantName: Codable {
|
|
|
+ let id: Int
|
|
|
+ let userID: JSONNull?
|
|
|
+ let firstApplicantNameUserID, advisorMasterID: Int
|
|
|
+ let salutation, firstName, middleName, lastName: String
|
|
|
+ let birthDate, dateOfBirth, gender, pan: String
|
|
|
+ let aadhar: String
|
|
|
+ let maritalStatus: Int
|
|
|
+ let maritalStatusDesc: String
|
|
|
+ let otherMaritalStatus: JSONNull?
|
|
|
+ let eduQualification: Int
|
|
|
+ let otherEduQualification: JSONNull?
|
|
|
+ let employmentType: Int
|
|
|
+ let otherEmploymentType: JSONNull?
|
|
|
+ let orgName: String
|
|
|
+ let loginUserName: JSONNull?
|
|
|
+ let loginPassword, currDesignation: String
|
|
|
+ let residentType: Int
|
|
|
+ let otherResidentType: JSONNull?
|
|
|
+ let countryOfResidence: Int
|
|
|
+ let retiredFlag, lastLoginTime, lastLogoutTime: String
|
|
|
+ let retirementAge, lifeExpectancy, riskProfileScore, olderRiskProfile: Int
|
|
|
+ let riskProfileName: JSONNull?
|
|
|
+ let activeFlag: String
|
|
|
+ let emailID, retirementStatus, mobile, name: JSONNull?
|
|
|
+ let familyMemberID, age: Int
|
|
|
+ let clientInfoAddEdit, clientInfoDelete, clientInfoView, budgetManagementView: JSONNull?
|
|
|
+ let financialPlanningAddEdit, financialPlanningView, goalPlanningAddEdit, goalPlanningView: JSONNull?
|
|
|
+ let investAddEdit, investView, mfBackOfficeView, portfolioManagementAddEdit: JSONNull?
|
|
|
+ let portfolioManagementView, role: JSONNull?
|
|
|
+ let finexaUser: String
|
|
|
+ let clientContactDTO, clientGuardianDTO, clientGuardianContactDTO, clientFamilyMemberDTO: JSONNull?
|
|
|
+ let subscribed: JSONNull?
|
|
|
+ let subscriptionDetails: Int
|
|
|
+ let subscriptionDescription, message1, message2, captchaToken: JSONNull?
|
|
|
+ let clientFamilyMembersDTO: [ClientFamilyMembersDTO]
|
|
|
+ let clientContactsDTO: [ClientContactsDTO]
|
|
|
+ let clientFamilyIncomeDTO, clientLifeExpDTO: JSONNull?
|
|
|
+ let lastUpdatedOn, createdOn: String
|
|
|
+ let userEmailID, masterID: JSONNull?
|
|
|
+ let clientFullName, residentTypeName: String
|
|
|
+ let clientGuardianID: Int
|
|
|
+
|
|
|
+ enum CodingKeys: String, CodingKey {
|
|
|
+ case id, userID
|
|
|
+ case firstApplicantNameUserID = "userId"
|
|
|
+ case advisorMasterID, salutation, firstName, middleName, lastName, birthDate, dateOfBirth, gender, pan, aadhar, maritalStatus, maritalStatusDesc, otherMaritalStatus, eduQualification, otherEduQualification, employmentType, otherEmploymentType, orgName, loginUserName, loginPassword, currDesignation, residentType, otherResidentType, countryOfResidence, retiredFlag, lastLoginTime, lastLogoutTime, retirementAge, lifeExpectancy, riskProfileScore, olderRiskProfile, riskProfileName, activeFlag, emailID, retirementStatus, mobile, name
|
|
|
+ case familyMemberID = "familyMemberId"
|
|
|
+ case age, clientInfoAddEdit, clientInfoDelete, clientInfoView, budgetManagementView, financialPlanningAddEdit, financialPlanningView, goalPlanningAddEdit, goalPlanningView, investAddEdit, investView, mfBackOfficeView, portfolioManagementAddEdit, portfolioManagementView, role, finexaUser, clientContactDTO, clientGuardianDTO, clientGuardianContactDTO, clientFamilyMemberDTO, subscribed, subscriptionDetails, subscriptionDescription, message1, message2, captchaToken, clientFamilyMembersDTO, clientContactsDTO, clientFamilyIncomeDTO, clientLifeExpDTO, lastUpdatedOn, createdOn, userEmailID, masterID, clientFullName, residentTypeName
|
|
|
+ case clientGuardianID = "clientGuardianId"
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// MARK: - ClientContactsDTO
|
|
|
+struct ClientContactsDTO: Codable {
|
|
|
+ let id: Int
|
|
|
+ let alternateEmail, correspondenceAddressLine1, correspondenceAddressLine2, correspondenceAddressLine3: String
|
|
|
+ let correspondenceCity: String
|
|
|
+ let correspondencePincode: Int
|
|
|
+ let correspondenceState: String
|
|
|
+ let address3DropID: Int
|
|
|
+ let countryCode, emailID: String
|
|
|
+ let emergencyContact, mobile: Int
|
|
|
+ let officeAddressLine1, officeAddressLine2, officeAddressLine3, officeCity: String
|
|
|
+ let officePincode: Int
|
|
|
+ let officeState: String
|
|
|
+ let address1DropID: Int
|
|
|
+ let permanentAddressLine1, permanentAddressLine2: String
|
|
|
+ let permanentAddressLine3: JSONNull?
|
|
|
+ let permanentCity: String
|
|
|
+ let permanentPincode: Int
|
|
|
+ let permanentState: String
|
|
|
+ let address2DropID, phone, clientID, lookupOfficeCountryID: Int
|
|
|
+ let lookupOfficeCountryName: JSONNull?
|
|
|
+ let lookupPermanentCountryID: Int
|
|
|
+ let lookupPermanentCountryName: JSONNull?
|
|
|
+ let lookupCorrespondenceCountryID: Int
|
|
|
+ let lookupCorrespondenceCountryName: JSONNull?
|
|
|
+
|
|
|
+ enum CodingKeys: String, CodingKey {
|
|
|
+ case id, alternateEmail, correspondenceAddressLine1, correspondenceAddressLine2, correspondenceAddressLine3, correspondenceCity, correspondencePincode, correspondenceState
|
|
|
+ case address3DropID = "address3DropId"
|
|
|
+ case countryCode, emailID, emergencyContact, mobile, officeAddressLine1, officeAddressLine2, officeAddressLine3, officeCity, officePincode, officeState
|
|
|
+ case address1DropID = "address1DropId"
|
|
|
+ case permanentAddressLine1, permanentAddressLine2, permanentAddressLine3, permanentCity, permanentPincode, permanentState
|
|
|
+ case address2DropID = "address2DropId"
|
|
|
+ case phone
|
|
|
+ case clientID = "clientId"
|
|
|
+ case lookupOfficeCountryID = "lookupOfficeCountryId"
|
|
|
+ case lookupOfficeCountryName
|
|
|
+ case lookupPermanentCountryID = "lookupPermanentCountryId"
|
|
|
+ case lookupPermanentCountryName
|
|
|
+ case lookupCorrespondenceCountryID = "lookupCorrespondenceCountryId"
|
|
|
+ case lookupCorrespondenceCountryName
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// MARK: - ClientFamilyMembersDTO
|
|
|
+struct ClientFamilyMembersDTO: Codable {
|
|
|
+ let id: Int
|
|
|
+ let firstName, middleName, lastName: String
|
|
|
+ let relationID: Int
|
|
|
+ let relationName: String
|
|
|
+ let otherRelation: JSONNull?
|
|
|
+ let birthDate, dateOfBirth, pan: String
|
|
|
+ let aadhar: String?
|
|
|
+ let dependentFlag, retiredFlag: String
|
|
|
+ let lifeExpectancy, retirementAge: Int?
|
|
|
+ let isTobaccoUser, isProperBMI, hasDiseaseHistory, hasNormalBP: String
|
|
|
+ let gender: JSONNull?
|
|
|
+ let clientID: Int
|
|
|
+ let totalAmount: JSONNull?
|
|
|
+ let fmFullName: String
|
|
|
+ let clientName, nboTaxStatus, lifeExpectancyManual: JSONNull?
|
|
|
+ let selfCheck, spouseCheck, sonCheck, daughterCheck: Bool
|
|
|
+ let fatherCheck, motherCheck, brotherCheck, sisterCheck: Bool
|
|
|
+ let otherCheck, headChangeStatus: Bool
|
|
|
+ let headChangeError: JSONNull?
|
|
|
+}
|