Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.54 KB

File metadata and controls

33 lines (24 loc) · 1.54 KB

V0041OpenapiLicensesResp

Properties

Name Type Description Notes
licenses List[V0041OpenapiLicensesRespLicensesInner] List of licenses
last_update V0041OpenapiLicensesRespLastUpdate
meta V0041OpenapiSharesRespMeta [optional]
errors List[V0041OpenapiSharesRespErrorsInner] Query errors [optional]
warnings List[V0041OpenapiSharesRespWarningsInner] Query warnings [optional]

Example

from slurmrest_python.models.v0041_openapi_licenses_resp import V0041OpenapiLicensesResp

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

# convert the object into a dict
v0041_openapi_licenses_resp_dict = v0041_openapi_licenses_resp_instance.to_dict()
# create an instance of V0041OpenapiLicensesResp from a dict
v0041_openapi_licenses_resp_from_dict = V0041OpenapiLicensesResp.from_dict(v0041_openapi_licenses_resp_dict)

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