Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.48 KB

File metadata and controls

32 lines (23 loc) · 1.48 KB

V0041OpenapiAssocsResp

Properties

Name Type Description Notes
associations List[V0041OpenapiSlurmdbdConfigRespAssociationsInner] associations
meta SlurmV0041GetShares200ResponseMeta [optional]
errors List[SlurmV0041GetShares200ResponseErrorsInner] Query errors [optional]
warnings List[SlurmV0041GetShares200ResponseWarningsInner] Query warnings [optional]

Example

from slurm_api_client.models.v0041_openapi_assocs_resp import V0041OpenapiAssocsResp

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

# convert the object into a dict
v0041_openapi_assocs_resp_dict = v0041_openapi_assocs_resp_instance.to_dict()
# create an instance of V0041OpenapiAssocsResp from a dict
v0041_openapi_assocs_resp_from_dict = V0041OpenapiAssocsResp.from_dict(v0041_openapi_assocs_resp_dict)

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