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

com.aliyun.dingtalkservice_group_1_0.models.QueryCustomerCardRequest 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.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class QueryCustomerCardRequest extends TeaModel {
    // 查询jsonString
    @NameInMap("jsonParams")
    public String jsonParams;

    @NameInMap("openTeamId")
    public String openTeamId;

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

    public QueryCustomerCardRequest setJsonParams(String jsonParams) {
        this.jsonParams = jsonParams;
        return this;
    }
    public String getJsonParams() {
        return this.jsonParams;
    }

    public QueryCustomerCardRequest setOpenTeamId(String openTeamId) {
        this.openTeamId = openTeamId;
        return this;
    }
    public String getOpenTeamId() {
        return this.openTeamId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy