mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4182. Id field is not set in the xml response for DeployVirtualMachine/CreateVolume/CreateNetwork API's.
This commit is contained in:
parent
a3450afff5
commit
c84f373d47
|
|
@ -16,9 +16,14 @@
|
|||
// under the License.
|
||||
package org.apache.cloudstack.api.response;
|
||||
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
import org.apache.cloudstack.api.ApiConstants;
|
||||
import org.apache.cloudstack.api.BaseResponse;
|
||||
|
||||
public class CreateCmdResponse extends BaseResponse {
|
||||
|
||||
@SerializedName(ApiConstants.ID)
|
||||
private String id;
|
||||
|
||||
public String getId() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue