Name | Type | Description | Notes |
---|---|---|---|
id | int | [optional] | |
name | str | [optional] |
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)