Properties
Name |
Type |
Description |
Notes |
address |
str |
|
[optional] |
auth_methods |
List[str] |
Based on authMethods |
[optional] |
day_of_birth |
str |
|
[optional] |
district_code |
str |
|
[optional] |
district_name |
str |
|
[optional] |
email |
str |
|
[optional] |
email_verified |
bool |
|
[optional] |
first_name |
str |
|
[optional] |
gender |
str |
|
[optional] |
health_id |
str |
|
[optional] |
health_id_number |
str |
|
[optional] |
kyc_photo |
str |
Encoded with Base 64 |
[optional] |
kyc_verified |
bool |
|
[optional] |
last_name |
str |
|
[optional] |
middle_name |
str |
|
[optional] |
mobile |
str |
|
[optional] |
month_of_birth |
str |
|
[optional] |
name |
str |
|
[optional] |
new |
bool |
|
[optional] |
phr_address |
List[str] |
|
[optional] |
pincode |
str |
|
[optional] |
profile_photo |
str |
Encoded with Base 64 |
[optional] |
state_code |
str |
|
[optional] |
state_name |
str |
|
[optional] |
sub_district_code |
str |
|
[optional] |
subdistrict_name |
str |
|
[optional] |
tags |
Dict[str, str] |
|
[optional] |
town_code |
str |
|
[optional] |
town_name |
str |
|
[optional] |
verification_status |
str |
|
[optional] |
verification_type |
str |
|
[optional] |
village_code |
str |
|
[optional] |
village_name |
str |
|
[optional] |
ward_code |
str |
|
[optional] |
ward_name |
str |
|
[optional] |
year_of_birth |
str |
|
[optional] |
Example
from abha.models.get_account_information_using_get200_response import GetAccountInformationUsingGET200Response
# TODO update the JSON string below
json = "{}"
# create an instance of GetAccountInformationUsingGET200Response from a JSON string
get_account_information_using_get200_response_instance = GetAccountInformationUsingGET200Response.from_json(json)
# print the JSON string representation of the object
print(GetAccountInformationUsingGET200Response.to_json())
# convert the object into a dict
get_account_information_using_get200_response_dict = get_account_information_using_get200_response_instance.to_dict()
# create an instance of GetAccountInformationUsingGET200Response from a dict
get_account_information_using_get200_response_from_dict = GetAccountInformationUsingGET200Response.from_dict(get_account_information_using_get200_response_dict)
[Back to Model list] [Back to API list] [Back to README]