Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.48 KB

File metadata and controls

33 lines (24 loc) · 1.48 KB

V0043OpenapiAccountsAddCondResp

Properties

Name Type Description Notes
association_condition V0043AccountsAddCond [optional]
account V0043AccountShort [optional]
meta V0043OpenapiMeta [optional]
errors List[V0043OpenapiError] [optional]
warnings List[V0043OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0043_openapi_accounts_add_cond_resp import V0043OpenapiAccountsAddCondResp

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

# convert the object into a dict
v0043_openapi_accounts_add_cond_resp_dict = v0043_openapi_accounts_add_cond_resp_instance.to_dict()
# create an instance of V0043OpenapiAccountsAddCondResp from a dict
v0043_openapi_accounts_add_cond_resp_from_dict = V0043OpenapiAccountsAddCondResp.from_dict(v0043_openapi_accounts_add_cond_resp_dict)

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