Name | Type | Description | Notes |
---|---|---|---|
request_id | str | a nonce, unique for each HTTP request | |
timestamp | datetime | Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ | |
auth | PatientAuthConfirmResponseAuth | [optional] | |
error | Error | [optional] | |
resp | RequestReference |
from abdm.models.patient_auth_confirm_response import PatientAuthConfirmResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PatientAuthConfirmResponse from a JSON string
patient_auth_confirm_response_instance = PatientAuthConfirmResponse.from_json(json)
# print the JSON string representation of the object
print(PatientAuthConfirmResponse.to_json())
# convert the object into a dict
patient_auth_confirm_response_dict = patient_auth_confirm_response_instance.to_dict()
# create an instance of PatientAuthConfirmResponse from a dict
patient_auth_confirm_response_from_dict = PatientAuthConfirmResponse.from_dict(patient_auth_confirm_response_dict)