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

com.antgroup.antchain.openapi.riskplus.models.NotifyDubbridgeCallbackRequest 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 NotifyDubbridgeCallbackRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 租户id
    @NameInMap("channel_code")
    @Validation(required = true)
    public String channelCode;

    // json参数
    @NameInMap("biz_param")
    @Validation(required = true)
    public String bizParam;

    // 回调类型(1授信回调2用信回调)
    @NameInMap("biz_type")
    @Validation(required = true)
    public String bizType;

    // 对应授信/用信传给三方留存单号
    @NameInMap("seq_no")
    @Validation(required = true)
    public String seqNo;

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

    public NotifyDubbridgeCallbackRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public NotifyDubbridgeCallbackRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public NotifyDubbridgeCallbackRequest setChannelCode(String channelCode) {
        this.channelCode = channelCode;
        return this;
    }
    public String getChannelCode() {
        return this.channelCode;
    }

    public NotifyDubbridgeCallbackRequest setBizParam(String bizParam) {
        this.bizParam = bizParam;
        return this;
    }
    public String getBizParam() {
        return this.bizParam;
    }

    public NotifyDubbridgeCallbackRequest setBizType(String bizType) {
        this.bizType = bizType;
        return this;
    }
    public String getBizType() {
        return this.bizType;
    }

    public NotifyDubbridgeCallbackRequest setSeqNo(String seqNo) {
        this.seqNo = seqNo;
        return this;
    }
    public String getSeqNo() {
        return this.seqNo;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy