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

com.aliyun.dingtalkyida_1_0.models.QueryServiceRecordResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class QueryServiceRecordResponseBody extends TeaModel {
    // 总数量
    @NameInMap("totalCount")
    public Integer totalCount;

    // 服务调用记录数组
    @NameInMap("values")
    public java.util.List values;

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

    public QueryServiceRecordResponseBody setTotalCount(Integer totalCount) {
        this.totalCount = totalCount;
        return this;
    }
    public Integer getTotalCount() {
        return this.totalCount;
    }

    public QueryServiceRecordResponseBody setValues(java.util.List values) {
        this.values = values;
        return this;
    }
    public java.util.List getValues() {
        return this.values;
    }

    public static class QueryServiceRecordResponseBodyValues extends TeaModel {
        // 表单实例id
        @NameInMap("formInstanceId")
        public String formInstanceId;

        // 表单编码
        @NameInMap("formUuid")
        public String formUuid;

        // 服务类型
        @NameInMap("hookType")
        public String hookType;

        // 本次服务调用的唯一ID
        @NameInMap("hookUuid")
        public String hookUuid;

        // 服务调用的实际入参
        @NameInMap("invokeParameter")
        public String invokeParameter;

        // 服务调用的返回结果
        @NameInMap("invokeResult")
        public String invokeResult;

        // 服务调用状态
        @NameInMap("invokeStatus")
        public String invokeStatus;

        // 服务调用是否成功
        @NameInMap("invokeSuccess")
        public String invokeSuccess;

        // 服务调用地址
        @NameInMap("invokeUrl")
        public String invokeUrl;

        // 宜搭调用目标服务时传的实际参数
        @NameInMap("serviceContent")
        public String serviceContent;

        // 服务名称
        @NameInMap("serviceName")
        public String serviceName;

        // 服务调用的实际入参
        @NameInMap("serviceParameter")
        public String serviceParameter;

        // 重试的服务调用唯一ID(此次服务调用是重试哪个执行失败的服务调用)
        @NameInMap("sourceUuid")
        public String sourceUuid;

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

        public QueryServiceRecordResponseBodyValues setFormInstanceId(String formInstanceId) {
            this.formInstanceId = formInstanceId;
            return this;
        }
        public String getFormInstanceId() {
            return this.formInstanceId;
        }

        public QueryServiceRecordResponseBodyValues setFormUuid(String formUuid) {
            this.formUuid = formUuid;
            return this;
        }
        public String getFormUuid() {
            return this.formUuid;
        }

        public QueryServiceRecordResponseBodyValues setHookType(String hookType) {
            this.hookType = hookType;
            return this;
        }
        public String getHookType() {
            return this.hookType;
        }

        public QueryServiceRecordResponseBodyValues setHookUuid(String hookUuid) {
            this.hookUuid = hookUuid;
            return this;
        }
        public String getHookUuid() {
            return this.hookUuid;
        }

        public QueryServiceRecordResponseBodyValues setInvokeParameter(String invokeParameter) {
            this.invokeParameter = invokeParameter;
            return this;
        }
        public String getInvokeParameter() {
            return this.invokeParameter;
        }

        public QueryServiceRecordResponseBodyValues setInvokeResult(String invokeResult) {
            this.invokeResult = invokeResult;
            return this;
        }
        public String getInvokeResult() {
            return this.invokeResult;
        }

        public QueryServiceRecordResponseBodyValues setInvokeStatus(String invokeStatus) {
            this.invokeStatus = invokeStatus;
            return this;
        }
        public String getInvokeStatus() {
            return this.invokeStatus;
        }

        public QueryServiceRecordResponseBodyValues setInvokeSuccess(String invokeSuccess) {
            this.invokeSuccess = invokeSuccess;
            return this;
        }
        public String getInvokeSuccess() {
            return this.invokeSuccess;
        }

        public QueryServiceRecordResponseBodyValues setInvokeUrl(String invokeUrl) {
            this.invokeUrl = invokeUrl;
            return this;
        }
        public String getInvokeUrl() {
            return this.invokeUrl;
        }

        public QueryServiceRecordResponseBodyValues setServiceContent(String serviceContent) {
            this.serviceContent = serviceContent;
            return this;
        }
        public String getServiceContent() {
            return this.serviceContent;
        }

        public QueryServiceRecordResponseBodyValues setServiceName(String serviceName) {
            this.serviceName = serviceName;
            return this;
        }
        public String getServiceName() {
            return this.serviceName;
        }

        public QueryServiceRecordResponseBodyValues setServiceParameter(String serviceParameter) {
            this.serviceParameter = serviceParameter;
            return this;
        }
        public String getServiceParameter() {
            return this.serviceParameter;
        }

        public QueryServiceRecordResponseBodyValues setSourceUuid(String sourceUuid) {
            this.sourceUuid = sourceUuid;
            return this;
        }
        public String getSourceUuid() {
            return this.sourceUuid;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy