All Downloads are FREE. Search and download functionalities are using the official Maven repository.

walkman.Response Maven / Gradle / Ivy

package walkman;

import okhttp3.Protocol;

public interface Response extends Message {
  /** @return the HTTP status code of the response. */
  int code();
  /** @return the content MIME type of the response. */
  String getContentType();
  RecordedResponse.Builder newBuilder();
  Protocol protocol();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy