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

com.aliyun.sdk.service.aliding20230426.models.UpdateMeetingRoomResponseBody Maven / Gradle / Ivy

There is a newer version: 1.0.26
Show newest version
// 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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy