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

com.aliyun.dingtalkgateway_1_0.models.OpenConnectionResponseBody 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy