com.aliyun.dingtalkdatacenter_1_0.models.QueryChartDataRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdatacenter_1_0.models;
import com.aliyun.tea.*;
public class QueryChartDataRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123
*/
@NameInMap("code")
public String code;
/**
* This parameter is required.
*
* example:
* ABC
*/
@NameInMap("ticket")
public String ticket;
public static QueryChartDataRequest build(java.util.Map map) throws Exception {
QueryChartDataRequest self = new QueryChartDataRequest();
return TeaModel.build(map, self);
}
public QueryChartDataRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public QueryChartDataRequest setTicket(String ticket) {
this.ticket = ticket;
return this;
}
public String getTicket() {
return this.ticket;
}
}