Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.31 KB

File metadata and controls

30 lines (23 loc) · 1.31 KB

NestedDescriptor

Properties

Name Type Description Notes
id str [optional]
path str
path_nested NestedDescriptor [optional]
format str

Example

from affinidi_tdk_credential_verification_client.models.nested_descriptor import NestedDescriptor

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

# convert the object into a dict
nested_descriptor_dict = nested_descriptor_instance.to_dict()
# create an instance of NestedDescriptor from a dict
nested_descriptor_from_dict = NestedDescriptor.from_dict(nested_descriptor_dict)

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