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

com.visenze.visearch.internal.json.InsertErrorMixin Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch.internal.json;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
abstract class InsertErrorMixin {

    protected String imName;
    protected Integer index;
    protected Integer errorCode;
    protected String errorMessage;

    public InsertErrorMixin(@JsonProperty("im_name") String imName,
                            @JsonProperty("index") Integer index,
                            @JsonProperty("error_code") Integer errorCode,
                            @JsonProperty("error_message") String errorMessage) {
        this.imName = imName;
        this.index = index;
        this.errorCode = errorCode;
        this.errorMessage = errorMessage;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy