Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.38 KB

VerifyPresentationOutput.md

File metadata and controls

30 lines (22 loc) · 1.38 KB

VerifyPresentationOutput

Response model of /verify-vp

Properties

Name Type Description Notes
errors VerifyPresentationOutputErrors
is_valid bool Verification result

Example

from affinidi_tdk_credential_verification_client.models.verify_presentation_output import VerifyPresentationOutput

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

# convert the object into a dict
verify_presentation_output_dict = verify_presentation_output_instance.to_dict()
# create an instance of VerifyPresentationOutput from a dict
verify_presentation_output_from_dict = VerifyPresentationOutput.from_dict(verify_presentation_output_dict)

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