![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkservice_group_1_0.models.GetTicketRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class GetTicketRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* This parameter is required.
*/
@NameInMap("openTicketId")
public String openTicketId;
public static GetTicketRequest build(java.util.Map map) throws Exception {
GetTicketRequest self = new GetTicketRequest();
return TeaModel.build(map, self);
}
public GetTicketRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public GetTicketRequest setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy