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

cn.buli_home.utils.net.http.HttpResponse Maven / Gradle / Ivy

There is a newer version: 0.3.1
Show newest version
package cn.buli_home.utils.net.http;

import com.alibaba.fastjson2.JSONObject;
import lombok.Data;

/**
 * HTTP Response DTO
 *
 * @author mustard
 * @version 1.0
 * Create by 2022/9/14
 */
@Data
public final class HttpResponse {

    private HttpRequest httpRequest;

    private int code;

    private JSONObject body;

    private String bodyString;

    private boolean success;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy