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

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

package be.lukin.poeditor.models;

public class UploadDetails {
    public static class Item{
        public int parsed;
        public int added;
        public int deleted;

        @Override
        public String toString() {
            return "Item{" +
                    "parsed=" + parsed +
                    ", added=" + added +
                    ", deleted=" + deleted +
                    '}';
        }
    }

    public Item terms;
    public Item definitions;

    @Override
    public String toString() {
        return "UploadDetails{" +
                "terms=" + terms +
                ", definitions=" + definitions +
                '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy