Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.49 KB

File metadata and controls

32 lines (23 loc) · 1.49 KB

V0041OpenapiAccountsResp

Properties

Name Type Description Notes
accounts List[V0041OpenapiSlurmdbdConfigRespAccountsInner] accounts
meta SlurmV0041GetShares200ResponseMeta [optional]
errors List[SlurmV0041GetShares200ResponseErrorsInner] Query errors [optional]
warnings List[SlurmV0041GetShares200ResponseWarningsInner] Query warnings [optional]

Example

from slurm_api_client.models.v0041_openapi_accounts_resp import V0041OpenapiAccountsResp

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

# convert the object into a dict
v0041_openapi_accounts_resp_dict = v0041_openapi_accounts_resp_instance.to_dict()
# create an instance of V0041OpenapiAccountsResp from a dict
v0041_openapi_accounts_resp_from_dict = V0041OpenapiAccountsResp.from_dict(v0041_openapi_accounts_resp_dict)

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