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

be.lukin.poeditor.models.Response Maven / Gradle / Ivy

package be.lukin.poeditor.models;

public class Response {
    /**
     * https://poeditor.com/api_reference/#create_project 
     */
    public static class Item{
        public int id;

        @Override
        public String toString() {
            return "Item{" +
                    "id=" + id +
                    '}';
        }
    }
    
    public String status;
    public String code;
    public String message;
    public Item item;

    @Override
    public String toString() {
        return "Response{" +
                "status='" + status + '\'' +
                ", code='" + code + '\'' +
                ", message='" + message + '\'' +
                ", item=" + item +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy