forked from ProjectEKA/hip-service
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAH-4119. Add. Abha Address Profile Response is added.
- Loading branch information
1 parent
6e8f806
commit 097c527
Showing
2 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
34 changes: 34 additions & 0 deletions
34
src/In.ProjectEKA.HipService/Verification/Model/AbhaAddressProfileResponse.cs
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace In.ProjectEKA.HipService.Verification.Model; | ||
|
||
public class AbhaAddressProfileResponse | ||
{ | ||
public string abhaAddress { get; set; } | ||
public string fullName { get; set; } | ||
public string profilePhoto { get; set; } | ||
public string firstName { get; set; } | ||
public string middleName { get; set; } | ||
public string lastName { get; set; } | ||
public int dayOfBirth { get; set; } | ||
public int monthOfBirth { get; set; } | ||
public int yearOfBirth { get; set; } | ||
public string dateOfBirth { get; set; } | ||
public string gender { get; set; } | ||
public string email { get; set; } | ||
public string mobile { get; set; } | ||
public string abhaNumber { get; set; } | ||
public string address { get; set; } | ||
public string stateName { get; set; } | ||
public int pinCode { get; set; } | ||
public int stateCode { get; set; } | ||
public int districtCode { get; set; } | ||
public List<string> AuthMethods { get; set; } | ||
public string status { get; set; } | ||
public string subDistrictCode { get; set; } | ||
public string subDistrictName { get; set; } | ||
public string emailVerified { get; set; } | ||
public string mobileVerified { get; set; } | ||
public string kycStatus { get; set; } | ||
|
||
} |
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