com.aliyun.ice20201109.models.GetPackageJobRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class GetPackageJobRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* ab4802364a2e49208c99efab82dfa8e8
*/
@NameInMap("JobId")
public String jobId;
public static GetPackageJobRequest build(java.util.Map map) throws Exception {
GetPackageJobRequest self = new GetPackageJobRequest();
return TeaModel.build(map, self);
}
public GetPackageJobRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
}