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

com.algorithmia.development.Request Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package com.algorithmia.development;

import com.google.gson.JsonElement;

class Request {
    public String content_type;
    public JsonElement data;

    Request(String content_type, JsonElement data) {

        this.content_type = content_type;
        this.data = data;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy