Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.35 KB

File metadata and controls

33 lines (24 loc) · 1.35 KB

V0044OpenapiLicensesResp

Properties

Name Type Description Notes
licenses List[V0044License]
last_update V0044Uint64NoValStruct
meta V0044OpenapiMeta [optional]
errors List[V0044OpenapiError] [optional]
warnings List[V0044OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0044_openapi_licenses_resp import V0044OpenapiLicensesResp

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

# convert the object into a dict
v0044_openapi_licenses_resp_dict = v0044_openapi_licenses_resp_instance.to_dict()
# create an instance of V0044OpenapiLicensesResp from a dict
v0044_openapi_licenses_resp_from_dict = V0044OpenapiLicensesResp.from_dict(v0044_openapi_licenses_resp_dict)

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