log model
| Name | Type | Description | Notes |
|---|---|---|---|
| created_at | int | ||
| id | str | ||
| ip_address | str | [optional] | |
| livemode | bool | ||
| loggable_id | str | [optional] | |
| loggable_type | str | [optional] | |
| method | str | [optional] | |
| oauth_token_id | str | [optional] | |
| query_string | Dict[str, object] | [optional] | |
| related | str | [optional] | |
| request_body | object | [optional] | |
| request_headers | Dict[str, str] | [optional] | |
| response_body | object | [optional] | |
| response_headers | Dict[str, str] | [optional] | |
| searchable_tags | List[str] | [optional] | |
| status | str | [optional] | |
| updated_at | str | [optional] | |
| url | str | [optional] | |
| user_account_id | str | [optional] | |
| version | str | [optional] |
from conekta.models.log_response_for_request import LogResponseForRequest
# TODO update the JSON string below
json = "{}"
# create an instance of LogResponseForRequest from a JSON string
log_response_for_request_instance = LogResponseForRequest.from_json(json)
# print the JSON string representation of the object
print(LogResponseForRequest.to_json())
# convert the object into a dict
log_response_for_request_dict = log_response_for_request_instance.to_dict()
# create an instance of LogResponseForRequest from a dict
log_response_for_request_from_dict = LogResponseForRequest.from_dict(log_response_for_request_dict)