をJSONObjectを取得:(OkHttp3で)この要求のようなレスポンス・オブジェクトからretrofit2未知のJSONオブジェクトで取得する方法retrofit2応答から
public class MyResponseObject {
@SerializedName("title")
public String title;
@SerializedName("info")
public JSONObject info;
@SerializedName("question_id")
public String questionId;
}
私が取得したい:
Observable<Response<MyResponseObject>> apiCall(@Body body);
次のようになりMyResponseObject
JSONObject情報
は通常のオブジェクトのようです。
public static class Info {
@SerializedName("description")
public String mDescription;
@SerializedName("preview_image")
public String mPreviewImage;
}
とMyResponseObjectで:
ありがとうRobert! @RobertEstivill – Moti