| Name | Type | Description | Notes |
|---|---|---|---|
| shares | V0042SharesRespMsg | ||
| meta | V0042OpenapiMeta | [optional] | |
| errors | List[V0042OpenapiError] | [optional] | |
| warnings | List[V0042OpenapiWarning] | [optional] |
from slurmrest_python.models.v0042_openapi_shares_resp import V0042OpenapiSharesResp
# TODO update the JSON string below
json = "{}"
# create an instance of V0042OpenapiSharesResp from a JSON string
v0042_openapi_shares_resp_instance = V0042OpenapiSharesResp.from_json(json)
# print the JSON string representation of the object
print(V0042OpenapiSharesResp.to_json())
# convert the object into a dict
v0042_openapi_shares_resp_dict = v0042_openapi_shares_resp_instance.to_dict()
# create an instance of V0042OpenapiSharesResp from a dict
v0042_openapi_shares_resp_from_dict = V0042OpenapiSharesResp.from_dict(v0042_openapi_shares_resp_dict)