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

com.antgroup.antchain.openapi.demo.models.InitBbpInsuranceUserRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class InitBbpInsuranceUserRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 保司编码
    @NameInMap("business_code")
    @Validation(required = true)
    public String businessCode;

    // 第三方id,此处为天猫uid
    @NameInMap("third_part_id")
    @Validation(required = true)
    public String thirdPartId;

    // 来源渠道
    @NameInMap("channel")
    @Validation(required = true)
    public String channel;

    // 埋点信息
    @NameInMap("burieds")
    @Validation(required = true)
    public QueryMap burieds;

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

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

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

    public InitBbpInsuranceUserRequest setBusinessCode(String businessCode) {
        this.businessCode = businessCode;
        return this;
    }
    public String getBusinessCode() {
        return this.businessCode;
    }

    public InitBbpInsuranceUserRequest setThirdPartId(String thirdPartId) {
        this.thirdPartId = thirdPartId;
        return this;
    }
    public String getThirdPartId() {
        return this.thirdPartId;
    }

    public InitBbpInsuranceUserRequest setChannel(String channel) {
        this.channel = channel;
        return this;
    }
    public String getChannel() {
        return this.channel;
    }

    public InitBbpInsuranceUserRequest setBurieds(QueryMap burieds) {
        this.burieds = burieds;
        return this;
    }
    public QueryMap getBurieds() {
        return this.burieds;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy