Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

ApiSysGet200ResponseCfg.md

File metadata and controls

29 lines (21 loc) · 1.07 KB

ApiSysGet200ResponseCfg

Properties

Name Type Description Notes
compilers float Number of compilers configured
runners float Number of runners configured

Example

from woj.models.api_sys_get200_response_cfg import ApiSysGet200ResponseCfg

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

# convert the object into a dict
api_sys_get200_response_cfg_dict = api_sys_get200_response_cfg_instance.to_dict()
# create an instance of ApiSysGet200ResponseCfg from a dict
api_sys_get200_response_cfg_form_dict = api_sys_get200_response_cfg.from_dict(api_sys_get200_response_cfg_dict)

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