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

com.aliyun.dingtalkdatacenter_1_0.models.QueryChartDataRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy