com.aliyun.sdk.service.aliding20230426.models.DeleteMeetingRoomResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-aliding20230426 Show documentation
Show all versions of alibabacloud-aliding20230426 Show documentation
Alibaba Cloud aliding (20230426) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.aliding20230426.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteMeetingRoomResponseBody} extends {@link TeaModel}
*
* DeleteMeetingRoomResponseBody
*/
public class DeleteMeetingRoomResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("result")
private Boolean result;
private DeleteMeetingRoomResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.result = builder.result;
}
public static Builder builder() {
return new Builder();
}
public static DeleteMeetingRoomResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return result
*/
public Boolean getResult() {
return this.result;
}
public static final class Builder {
private String requestId;
private Boolean result;
/**
* requestId
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* result.
*/
public Builder result(Boolean result) {
this.result = result;
return this;
}
public DeleteMeetingRoomResponseBody build() {
return new DeleteMeetingRoomResponseBody(this);
}
}
}