Skip to content

Latest commit

 

History

History
115 lines (76 loc) · 4.55 KB

File metadata and controls

115 lines (76 loc) · 4.55 KB

GetMockCallLogs

Properties

Name Type Required Description
CallLogs_ List<CallLogs>
Meta GetMockCallLogsMeta The response's non-standard meta information.

CallLogs

Information about the mock server's server responses.

Properties

Name Type Required Description
Id string The server response's ID.
ResponseName string The server response's name.
ServedAt string The date and time at which the server response was served.
Request_ CallLogsRequest The server response's request information.
Response_ CallLogsResponse The server response's response information.

CallLogsRequest

The server response's request information.

Properties

Name Type Required Description
Method string The request method.
Path string The request's path.
Headers RequestHeaders The request's headers.
Body RequestBody The request's body information.

RequestHeaders

The request's headers.

Properties

Name Type Required Description
Key string The request header's name.
Value string The request header's value.

RequestBody

The request's body information.

Properties

Name Type Required Description
Mode string The request body's media type (mode).
Data string The request body's contents.

CallLogsResponse

The server response's response information.

Properties

Name Type Required Description
Type_ string The type of response.
StatusCode double The response's status code.
Headers ResponseHeaders The response's headers.
Body ResponseBody The response's body information.

ResponseHeaders

The response's headers.

Properties

Name Type Required Description
Description_ Description The response header's description information.
Key string The response header's name.
Value string The response header's value.

Description

The response header's description information.

Properties

Name Type Required Description
Content string The response header description's content.
Type_ string The response header description's media type.

ResponseBody

The response's body information.

Properties

Name Type Required Description
Data string The response body's contents.

GetMockCallLogsMeta

The response's non-standard meta information.

Properties

Name Type Required Description
NextCursor string The pagination cursor that points to the next record in the results set.