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

com.aliyun.ccc20200701.models.WithdrawTicketRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class WithdrawTicketRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("Comment") public String comment; /** *

This parameter is required.

* * example: *

ccc-test

*/ @NameInMap("InstanceId") public String instanceId; /** *

This parameter is required.

* * example: *

5491d3b4-14ee-4341-b5f1-db2c78beddeb

*/ @NameInMap("TicketId") public String ticketId; public static WithdrawTicketRequest build(java.util.Map map) throws Exception { WithdrawTicketRequest self = new WithdrawTicketRequest(); return TeaModel.build(map, self); } public WithdrawTicketRequest setComment(String comment) { this.comment = comment; return this; } public String getComment() { return this.comment; } public WithdrawTicketRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public WithdrawTicketRequest setTicketId(String ticketId) { this.ticketId = ticketId; return this; } public String getTicketId() { return this.ticketId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy