mirror of https://github.com/apache/cloudstack.git
29 lines
546 B
Java
29 lines
546 B
Java
package com.cloud.api.response;
|
|
|
|
import com.cloud.api.ApiConstants;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class CreateCmdResponse extends BaseResponse {
|
|
@SerializedName(ApiConstants.JOB_ID)
|
|
private Long jobId;
|
|
|
|
@SerializedName(ApiConstants.ID)
|
|
private Long id;
|
|
|
|
public Long getJobId() {
|
|
return jobId;
|
|
}
|
|
|
|
public void setJobId(Long jobId) {
|
|
this.jobId = jobId;
|
|
}
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
}
|