Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.27 KB

File metadata and controls

34 lines (25 loc) · 1.27 KB

ApiConnectionRequestRequest

An outbound request the caller (or agent) wants executed.

Properties

Name Type Description Notes
method str
path str [optional] [default to '/']
query Dict[str, str] [optional]
headers Dict[str, str] [optional]
body object [optional]

Example

from ksapi.models.api_connection_request_request import ApiConnectionRequestRequest

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

# convert the object into a dict
api_connection_request_request_dict = api_connection_request_request_instance.to_dict()
# create an instance of ApiConnectionRequestRequest from a dict
api_connection_request_request_from_dict = ApiConnectionRequestRequest.from_dict(api_connection_request_request_dict)

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