DTO contains signed credential
Name | Type | Description | Notes |
---|---|---|---|
signed_credential | SignCredentialResultDtoSignedCredential |
from affinidi_tdk_wallets_client.models.sign_credential_result_dto import SignCredentialResultDto
# TODO update the JSON string below
json = "{}"
# create an instance of SignCredentialResultDto from a JSON string
sign_credential_result_dto_instance = SignCredentialResultDto.from_json(json)
# print the JSON string representation of the object
print SignCredentialResultDto.to_json()
# convert the object into a dict
sign_credential_result_dto_dict = sign_credential_result_dto_instance.to_dict()
# create an instance of SignCredentialResultDto from a dict
sign_credential_result_dto_from_dict = SignCredentialResultDto.from_dict(sign_credential_result_dto_dict)