Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.4 KB

File metadata and controls

32 lines (25 loc) · 1.4 KB

InputDescriptor

Properties

Name Type Description Notes
id str
constraints Constraints
name str [optional]
purpose str [optional]
format Format [optional]
group List[str] [optional]

Example

from affinidi_tdk_credential_verification_client.models.input_descriptor import InputDescriptor

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

# convert the object into a dict
input_descriptor_dict = input_descriptor_instance.to_dict()
# create an instance of InputDescriptor from a dict
input_descriptor_from_dict = InputDescriptor.from_dict(input_descriptor_dict)

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