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

com.antgroup.antchain.openapi.riskplus.models.CommonNotyfyResult Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

public class CommonNotyfyResult extends TeaModel {
    // 请求id
    @NameInMap("request_id")
    @Validation(required = true)
    public String requestId;

    // 业务响应Json
    @NameInMap("biz_response")
    @Validation(required = true)
    public String bizResponse;

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

    public CommonNotyfyResult setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public CommonNotyfyResult setBizResponse(String bizResponse) {
        this.bizResponse = bizResponse;
        return this;
    }
    public String getBizResponse() {
        return this.bizResponse;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy