com.aliyun.dingtalkgateway_1_0.models.OpenConnectionResponseBody 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.dingtalkgateway_1_0.models;
import com.aliyun.tea.*;
public class OpenConnectionResponseBody extends TeaModel {
/**
* example:
* wss://open-connection.dingtalk.com/connect
*/
@NameInMap("endpoint")
public String endpoint;
/**
* example:
* 67e5aeb3-de99-11ed-897e-e251245ed5d2
*/
@NameInMap("ticket")
public String ticket;
public static OpenConnectionResponseBody build(java.util.Map map) throws Exception {
OpenConnectionResponseBody self = new OpenConnectionResponseBody();
return TeaModel.build(map, self);
}
public OpenConnectionResponseBody setEndpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
public String getEndpoint() {
return this.endpoint;
}
public OpenConnectionResponseBody setTicket(String ticket) {
this.ticket = ticket;
return this;
}
public String getTicket() {
return this.ticket;
}
}