Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.48 KB

CreateHealthIdWithPreVerifiedRequest.md

File metadata and controls

36 lines (27 loc) · 1.48 KB

CreateHealthIdWithPreVerifiedRequest

Properties

Name Type Description Notes
email str [optional]
first_name str [optional]
health_id str [optional]
last_name str [optional]
middle_name str [optional]
password str [optional]
profile_photo str Encoded with Base 64 [optional]
txn_id str Based on UUID [optional]

Example

from abha.models.create_health_id_with_pre_verified_request import CreateHealthIdWithPreVerifiedRequest

# TODO update the JSON string below
json = "{}"
# create an instance of CreateHealthIdWithPreVerifiedRequest from a JSON string
create_health_id_with_pre_verified_request_instance = CreateHealthIdWithPreVerifiedRequest.from_json(json)
# print the JSON string representation of the object
print(CreateHealthIdWithPreVerifiedRequest.to_json())

# convert the object into a dict
create_health_id_with_pre_verified_request_dict = create_health_id_with_pre_verified_request_instance.to_dict()
# create an instance of CreateHealthIdWithPreVerifiedRequest from a dict
create_health_id_with_pre_verified_request_from_dict = CreateHealthIdWithPreVerifiedRequest.from_dict(create_health_id_with_pre_verified_request_dict)

[Back to Model list] [Back to API list] [Back to README]