Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 731 Bytes

File metadata and controls

27 lines (19 loc) · 731 Bytes

Kafka

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.kafka import Kafka

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

# convert the object into a dict
kafka_dict = kafka_instance.to_dict()
# create an instance of Kafka from a dict
kafka_form_dict = kafka.from_dict(kafka_dict)

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