Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
30 lines (21 loc) · 765 Bytes

File metadata and controls

executable file
·
30 lines (21 loc) · 765 Bytes

SLA

Properties

Name Type Description Notes
name str
description str [optional]

Example

from epiccore.models.sla import SLA

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

# convert the object into a dict
sla_dict = sla_instance.to_dict()
# create an instance of SLA from a dict
sla_form_dict = sla.from_dict(sla_dict)

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