com.aliyun.sdk.service.aliding20230426.models.UpdateMeetingRoomResponseBody 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 UpdateMeetingRoomResponseBody} extends {@link TeaModel}
*
* UpdateMeetingRoomResponseBody
*/
public class UpdateMeetingRoomResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Result")
private Boolean result;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("vendorRequestId")
private String vendorRequestId;
@com.aliyun.core.annotation.NameInMap("vendorType")
private String vendorType;
private UpdateMeetingRoomResponseBody(Builder builder) {
this.result = builder.result;
this.requestId = builder.requestId;
this.vendorRequestId = builder.vendorRequestId;
this.vendorType = builder.vendorType;
}
public static Builder builder() {
return new Builder();
}
public static UpdateMeetingRoomResponseBody create() {
return builder().build();
}
/**
* @return result
*/
public Boolean getResult() {
return this.result;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return vendorRequestId
*/
public String getVendorRequestId() {
return this.vendorRequestId;
}
/**
* @return vendorType
*/
public String getVendorType() {
return this.vendorType;
}
public static final class Builder {
private Boolean result;
private String requestId;
private String vendorRequestId;
private String vendorType;
/**
* Result.
*/
public Builder result(Boolean result) {
this.result = result;
return this;
}
/**
* requestId
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* vendorRequestId.
*/
public Builder vendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
/**
* vendorType.
*/
public Builder vendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public UpdateMeetingRoomResponseBody build() {
return new UpdateMeetingRoomResponseBody(this);
}
}
}