Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 882 Bytes

KeyNameDto.md

File metadata and controls

30 lines (21 loc) · 882 Bytes

KeyNameDto

Properties

Name Type Description Notes
id int [optional]
name str [optional]

Example

from data_bridges_client.models.key_name_dto import KeyNameDto

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

# convert the object into a dict
key_name_dto_dict = key_name_dto_instance.to_dict()
# create an instance of KeyNameDto from a dict
key_name_dto_from_dict = KeyNameDto.from_dict(key_name_dto_dict)

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