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

com.aliyun.sdk.service.ecs20140526.models.CreateForwardEntryResponseBody Maven / Gradle / Ivy

There is a newer version: 5.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link CreateForwardEntryResponseBody} extends {@link TeaModel}
 *
 * 

CreateForwardEntryResponseBody

*/ public class CreateForwardEntryResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ForwardEntryId") private String forwardEntryId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private CreateForwardEntryResponseBody(Builder builder) { this.forwardEntryId = builder.forwardEntryId; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static CreateForwardEntryResponseBody create() { return builder().build(); } /** * @return forwardEntryId */ public String getForwardEntryId() { return this.forwardEntryId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String forwardEntryId; private String requestId; /** * ForwardEntryId. */ public Builder forwardEntryId(String forwardEntryId) { this.forwardEntryId = forwardEntryId; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public CreateForwardEntryResponseBody build() { return new CreateForwardEntryResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy