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

com.aliyun.dingtalkservice_group_1_0.models.GetTicketRequest Maven / Gradle / Ivy

The newest version!
// 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 - 2024 Weber Informatics LLC | Privacy Policy