| Name | Type | Description | Notes |
|---|---|---|---|
| authentication_schemes | List[AuthSchema] | [optional] | |
| schemas | List[str] | [optional] | |
| patch | Supported | [optional] | |
| bulk | Supported | [optional] | |
| filter | Supported | [optional] | |
| change_password | Supported | [optional] | |
| sort | Supported | [optional] | |
| etag | Supported | [optional] | |
| xml_data_format | Supported | [optional] |
from phrasetms_client.models.service_provider_config_dto import ServiceProviderConfigDto
# TODO update the JSON string below
json = "{}"
# create an instance of ServiceProviderConfigDto from a JSON string
service_provider_config_dto_instance = ServiceProviderConfigDto.from_json(json)
# print the JSON string representation of the object
print ServiceProviderConfigDto.to_json()
# convert the object into a dict
service_provider_config_dto_dict = service_provider_config_dto_instance.to_dict()
# create an instance of ServiceProviderConfigDto from a dict
service_provider_config_dto_from_dict = ServiceProviderConfigDto.from_dict(service_provider_config_dto_dict)