Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.13 KB

File metadata and controls

31 lines (24 loc) · 1.13 KB

Field

Properties

Name Type Description Notes
id str [optional]
path List[str] [optional]
purpose str [optional]
filter Filter [optional]
predicate str [optional]

Example

from affinidi_tdk_credential_verification_client.models.field import Field

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

# convert the object into a dict
field_dict = field_instance.to_dict()
# create an instance of Field from a dict
field_from_dict = Field.from_dict(field_dict)

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