Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.28 KB

VerifyCredentialInput.md

File metadata and controls

30 lines (22 loc) · 1.28 KB

VerifyCredentialInput

Request model of /verify-vcs

Properties

Name Type Description Notes
verifiable_credentials List[W3cCredential] List of VCs
issuer_did_document FreeFormObject [optional]

Example

from affinidi_tdk_credential_verification_client.models.verify_credential_input import VerifyCredentialInput

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

# convert the object into a dict
verify_credential_input_dict = verify_credential_input_instance.to_dict()
# create an instance of VerifyCredentialInput from a dict
verify_credential_input_from_dict = VerifyCredentialInput.from_dict(verify_credential_input_dict)

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