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

com.qcloud.cos.model.ciModel.job.ErrorDetail Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.job;

import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.List;

public class ErrorDetail {
    @XStreamAlias("ErrorCount")
    private String errorCount;
    @XStreamImplicit(itemFieldName = "ErrorFile")
    private List errorFile;

    public String getErrorCount() {
        return errorCount;
    }

    public void setErrorCount(String errorCount) {
        this.errorCount = errorCount;
    }

    public List getErrorFile() {
        return errorFile;
    }

    public void setErrorFile(List errorFile) {
        this.errorFile = errorFile;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy