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

com.aliyun.vpc20160428.models.AllocateEipSegmentAddressResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class AllocateEipSegmentAddressResponseBody extends TeaModel {
    /**
     * 

The ID of the contiguous EIP group.

*/ @NameInMap("EipSegmentInstanceId") public String eipSegmentInstanceId; /** *

The request ID.

*/ @NameInMap("RequestId") public String requestId; public static AllocateEipSegmentAddressResponseBody build(java.util.Map map) throws Exception { AllocateEipSegmentAddressResponseBody self = new AllocateEipSegmentAddressResponseBody(); return TeaModel.build(map, self); } public AllocateEipSegmentAddressResponseBody setEipSegmentInstanceId(String eipSegmentInstanceId) { this.eipSegmentInstanceId = eipSegmentInstanceId; return this; } public String getEipSegmentInstanceId() { return this.eipSegmentInstanceId; } public AllocateEipSegmentAddressResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy