Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1012 Bytes

File metadata and controls

28 lines (21 loc) · 1012 Bytes

EvaluateVpOutput

Properties

Name Type Description Notes
result bool
errors List[str]

Example

from affinidi_tdk_credential_verification_client.models.evaluate_vp_output import EvaluateVpOutput

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

# convert the object into a dict
evaluate_vp_output_dict = evaluate_vp_output_instance.to_dict()
# create an instance of EvaluateVpOutput from a dict
evaluate_vp_output_from_dict = EvaluateVpOutput.from_dict(evaluate_vp_output_dict)

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