Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.21 KB

File metadata and controls

34 lines (25 loc) · 1.21 KB

ApiConnectionRequestResponse

Bounded result of an executed outbound request.

Properties

Name Type Description Notes
status_code int
headers Dict[str, str]
body str
truncated bool
latency_ms int

Example

from ksapi.models.api_connection_request_response import ApiConnectionRequestResponse

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

# convert the object into a dict
api_connection_request_response_dict = api_connection_request_response_instance.to_dict()
# create an instance of ApiConnectionRequestResponse from a dict
api_connection_request_response_from_dict = ApiConnectionRequestResponse.from_dict(api_connection_request_response_dict)

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