Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.26 KB

ShareProfileResult.md

File metadata and controls

33 lines (24 loc) · 1.26 KB

ShareProfileResult

Properties

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
acknowledgement ShareProfileAcknowledgement
error Error [optional]
resp RequestReference

Example

from abdm_gateway.models.share_profile_result import ShareProfileResult

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

# convert the object into a dict
share_profile_result_dict = share_profile_result_instance.to_dict()
# create an instance of ShareProfileResult from a dict
share_profile_result_from_dict = ShareProfileResult.from_dict(share_profile_result_dict)

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