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

cn.ucloud.ocr.model.GetUAIOcrAvailResourceTypeResult Maven / Gradle / Ivy

package cn.ucloud.ocr.model;

import cn.ucloud.common.pojo.BaseResponseResult;
import com.google.gson.annotations.SerializedName;

import java.util.List;

/**
 * @Description : 获取可用UAI-OCR资源类型
 * @Author : codezhang
 * @Date : 2019-04-19 15:28
 **/
public class GetUAIOcrAvailResourceTypeResult extends BaseResponseResult {

    /**
     * 可用资源类型总数
     */
    @SerializedName("TotalCount")
    private Integer totalCount;

    /**
     * OCR资源类型的具体信息
     */
    @SerializedName("DataSet")
    private List uaiOcrResourceTypeInfos;

    public Integer getTotalCount() {
        return totalCount;
    }

    public void setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
    }

    public List getUaiOcrResourceTypeInfos() {
        return uaiOcrResourceTypeInfos;
    }

    public void setUaiOcrResourceTypeInfos(List uaiOcrResourceTypeInfos) {
        this.uaiOcrResourceTypeInfos = uaiOcrResourceTypeInfos;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy