Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 1.24 KB

File metadata and controls

33 lines (26 loc) · 1.24 KB

W3cProof

Properties

Name Type Description Notes
type str [optional]
created str [optional]
verification_method str
proof_purpose str
jws str [optional]
proof_value str [optional]
nonce str [optional]

Example

from affinidi_tdk_credential_verification_client.models.w3c_proof import W3cProof

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

# convert the object into a dict
w3c_proof_dict = w3c_proof_instance.to_dict()
# create an instance of W3cProof from a dict
w3c_proof_from_dict = W3cProof.from_dict(w3c_proof_dict)

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