SCIMErrorResponse
Properties
| Name |
Type |
Description |
Notes |
| detail |
str |
Detailed error message |
[optional] |
| schemas |
List[str] |
|
[optional] |
| scim_type |
str |
Bad request type when status code is 400 |
[optional] |
| status |
str |
Same as HTTP status code, e.g. 400, 403, etc. |
|
Example
from odm_api.models.scim_error_response import SCIMErrorResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SCIMErrorResponse from a JSON string
scim_error_response_instance = SCIMErrorResponse.from_json(json)
# print the JSON string representation of the object
print(SCIMErrorResponse.to_json())
# convert the object into a dict
scim_error_response_dict = scim_error_response_instance.to_dict()
# create an instance of SCIMErrorResponse from a dict
scim_error_response_from_dict = SCIMErrorResponse.from_dict(scim_error_response_dict)
[Back to Model list] [Back to API list] [Back to README]