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

com.aliyun.dingtalkservice_group_1_0.models.TakeTicketRequest 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.dingtalkservice_group_1_0.models;

import com.aliyun.tea.*;

public class TakeTicketRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

eKWh3GBwsKEiE

*/ @NameInMap("openTeamId") public String openTeamId; /** *

This parameter is required.

* * example: *

a8iS4X94TgtgiE

*/ @NameInMap("openTicketId") public String openTicketId; /** *

This parameter is required.

* * example: *

Dq9hP8Sk2v6vQ6l05nCe5wiEiE

*/ @NameInMap("takerUnionId") public String takerUnionId; public static TakeTicketRequest build(java.util.Map map) throws Exception { TakeTicketRequest self = new TakeTicketRequest(); return TeaModel.build(map, self); } public TakeTicketRequest setOpenTeamId(String openTeamId) { this.openTeamId = openTeamId; return this; } public String getOpenTeamId() { return this.openTeamId; } public TakeTicketRequest setOpenTicketId(String openTicketId) { this.openTicketId = openTicketId; return this; } public String getOpenTicketId() { return this.openTicketId; } public TakeTicketRequest setTakerUnionId(String takerUnionId) { this.takerUnionId = takerUnionId; return this; } public String getTakerUnionId() { return this.takerUnionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy