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

com.aliyun.dingtalktranscribe_1_0.models.GetTranscribeBriefResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalktranscribe_1_0.models;

import com.aliyun.tea.*;

public class GetTranscribeBriefResponseBody extends TeaModel {
    @NameInMap("data")
    public GetTranscribeBriefResponseBodyData data;

    @NameInMap("statusCode")
    public Integer statusCode;

    // 用于描述本次请求是否成功的字段
    @NameInMap("success")
    public Boolean success;

    public static GetTranscribeBriefResponseBody build(java.util.Map map) throws Exception {
        GetTranscribeBriefResponseBody self = new GetTranscribeBriefResponseBody();
        return TeaModel.build(map, self);
    }

    public GetTranscribeBriefResponseBody setData(GetTranscribeBriefResponseBodyData data) {
        this.data = data;
        return this;
    }
    public GetTranscribeBriefResponseBodyData getData() {
        return this.data;
    }

    public GetTranscribeBriefResponseBody setStatusCode(Integer statusCode) {
        this.statusCode = statusCode;
        return this;
    }
    public Integer getStatusCode() {
        return this.statusCode;
    }

    public GetTranscribeBriefResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class GetTranscribeBriefResponseBodyData extends TeaModel {
        @NameInMap("bizType")
        public Integer bizType;

        public static GetTranscribeBriefResponseBodyData build(java.util.Map map) throws Exception {
            GetTranscribeBriefResponseBodyData self = new GetTranscribeBriefResponseBodyData();
            return TeaModel.build(map, self);
        }

        public GetTranscribeBriefResponseBodyData setBizType(Integer bizType) {
            this.bizType = bizType;
            return this;
        }
        public Integer getBizType() {
            return this.bizType;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy