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

com.aliyun.sdk.service.ens20171110.models.CreateEnsRouteEntryResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.models;

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

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

CreateEnsRouteEntryResponseBody

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

The request ID.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

The ID of the route.

* * example: *

rte-5vb5q8sk0lyoscx8539ds

*/ public Builder routeEntryId(String routeEntryId) { this.routeEntryId = routeEntryId; return this; } public CreateEnsRouteEntryResponseBody build() { return new CreateEnsRouteEntryResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy