from instana_client.models.application_slo_entity import ApplicationSloEntity
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationSloEntity from a JSON string
application_slo_entity_instance = ApplicationSloEntity.from_json(json)
# print the JSON string representation of the object
print(ApplicationSloEntity.to_json())
# convert the object into a dict
application_slo_entity_dict = application_slo_entity_instance.to_dict()
# create an instance of ApplicationSloEntity from a dict
application_slo_entity_from_dict = ApplicationSloEntity.from_dict(application_slo_entity_dict)