Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.93 KB

ServiceProviderConfigDto.md

File metadata and controls

35 lines (28 loc) · 1.93 KB

ServiceProviderConfigDto

Properties

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]

Example

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)

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