Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

UpdateApiConnectionRequest

Partial update (PATCH). A risk-increasing change re-arms the disclaimer.

Properties

Name Type Description Notes
base_url str [optional]
network_class NetworkClass [optional]
verify_tls bool [optional]
auth_config ApiAuthConfig [optional]
api_docs str [optional]

Example

from ksapi.models.update_api_connection_request import UpdateApiConnectionRequest

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

# convert the object into a dict
update_api_connection_request_dict = update_api_connection_request_instance.to_dict()
# create an instance of UpdateApiConnectionRequest from a dict
update_api_connection_request_from_dict = UpdateApiConnectionRequest.from_dict(update_api_connection_request_dict)

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