#[no_mangle]
pub extern "C" fn pactffi_sync_http_get_response(
    interaction: *const SynchronousHttp
) -> *const HttpResponse
Expand description

Get the response of a SynchronousHttp interaction.

§Safety

The data pointed to by the pointer this function returns will be deleted when the interaction is deleted. Trying to use if after the interaction is deleted will result in undefined behaviour.

§Error Handling

If the interaction is NULL, returns NULL.