index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopBuildTextToAvatarProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopBuildTextToAvatarProjectRequest} extends {@link RequestModel} * * <p>PopBuildTextToAvatarProjectRequest</p> */ public class PopBuildTextToAvatarProjectRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopBuildTextToAvatarProjectRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopBuildTextToAvatarProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopBuildTextToAvatarProjectRequest, Builder> { private String jwtToken; private String projectId; private Builder() { super(); } private Builder(PopBuildTextToAvatarProjectRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putBodyParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopBuildTextToAvatarProjectRequest build() { return new PopBuildTextToAvatarProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopBuildTextToAvatarProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopBuildTextToAvatarProjectResponse} extends {@link TeaModel} * * <p>PopBuildTextToAvatarProjectResponse</p> */ public class PopBuildTextToAvatarProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopBuildTextToAvatarProjectResponseBody body; private PopBuildTextToAvatarProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopBuildTextToAvatarProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopBuildTextToAvatarProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopBuildTextToAvatarProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopBuildTextToAvatarProjectResponseBody body); @Override PopBuildTextToAvatarProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopBuildTextToAvatarProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopBuildTextToAvatarProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopBuildTextToAvatarProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopBuildTextToAvatarProjectResponseBody body) { this.body = body; return this; } @Override public PopBuildTextToAvatarProjectResponse build() { return new PopBuildTextToAvatarProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopBuildTextToAvatarProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopBuildTextToAvatarProjectResponseBody} extends {@link TeaModel} * * <p>PopBuildTextToAvatarProjectResponseBody</p> */ public class PopBuildTextToAvatarProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopBuildTextToAvatarProjectResponseBody(Builder builder) { this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopBuildTextToAvatarProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopBuildTextToAvatarProjectResponseBody build() { return new PopBuildTextToAvatarProjectResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateFeatureToAvatarProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateFeatureToAvatarProjectRequest} extends {@link RequestModel} * * <p>PopCreateFeatureToAvatarProjectRequest</p> */ public class PopCreateFeatureToAvatarProjectRequest extends Request { @Body @NameInMap("ExtInfo") private String extInfo; @Body @NameInMap("Intro") private String intro; @Body @NameInMap("Title") private String title; private PopCreateFeatureToAvatarProjectRequest(Builder builder) { super(builder); this.extInfo = builder.extInfo; this.intro = builder.intro; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreateFeatureToAvatarProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return extInfo */ public String getExtInfo() { return this.extInfo; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreateFeatureToAvatarProjectRequest, Builder> { private String extInfo; private String intro; private String title; private Builder() { super(); } private Builder(PopCreateFeatureToAvatarProjectRequest request) { super(request); this.extInfo = request.extInfo; this.intro = request.intro; this.title = request.title; } /** * ExtInfo. */ public Builder extInfo(String extInfo) { this.putBodyParameter("ExtInfo", extInfo); this.extInfo = extInfo; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreateFeatureToAvatarProjectRequest build() { return new PopCreateFeatureToAvatarProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateFeatureToAvatarProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateFeatureToAvatarProjectResponse} extends {@link TeaModel} * * <p>PopCreateFeatureToAvatarProjectResponse</p> */ public class PopCreateFeatureToAvatarProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateFeatureToAvatarProjectResponseBody body; private PopCreateFeatureToAvatarProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateFeatureToAvatarProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateFeatureToAvatarProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateFeatureToAvatarProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateFeatureToAvatarProjectResponseBody body); @Override PopCreateFeatureToAvatarProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateFeatureToAvatarProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateFeatureToAvatarProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateFeatureToAvatarProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateFeatureToAvatarProjectResponseBody body) { this.body = body; return this; } @Override public PopCreateFeatureToAvatarProjectResponse build() { return new PopCreateFeatureToAvatarProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateFeatureToAvatarProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateFeatureToAvatarProjectResponseBody} extends {@link TeaModel} * * <p>PopCreateFeatureToAvatarProjectResponseBody</p> */ public class PopCreateFeatureToAvatarProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateFeatureToAvatarProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateFeatureToAvatarProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateFeatureToAvatarProjectResponseBody build() { return new PopCreateFeatureToAvatarProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private Long id; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("Id") private Long id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private Long id; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.dataset = builder.dataset; this.deleted = builder.deleted; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private Dataset dataset; private Boolean deleted; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateLivePortraitModelScopeProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateLivePortraitModelScopeProjectRequest} extends {@link RequestModel} * * <p>PopCreateLivePortraitModelScopeProjectRequest</p> */ public class PopCreateLivePortraitModelScopeProjectRequest extends Request { @Body @NameInMap("ExtInfo") private String extInfo; @Body @NameInMap("Intro") private String intro; @Body @NameInMap("Title") private String title; private PopCreateLivePortraitModelScopeProjectRequest(Builder builder) { super(builder); this.extInfo = builder.extInfo; this.intro = builder.intro; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreateLivePortraitModelScopeProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return extInfo */ public String getExtInfo() { return this.extInfo; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreateLivePortraitModelScopeProjectRequest, Builder> { private String extInfo; private String intro; private String title; private Builder() { super(); } private Builder(PopCreateLivePortraitModelScopeProjectRequest request) { super(request); this.extInfo = request.extInfo; this.intro = request.intro; this.title = request.title; } /** * ExtInfo. */ public Builder extInfo(String extInfo) { this.putBodyParameter("ExtInfo", extInfo); this.extInfo = extInfo; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreateLivePortraitModelScopeProjectRequest build() { return new PopCreateLivePortraitModelScopeProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateLivePortraitModelScopeProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateLivePortraitModelScopeProjectResponse} extends {@link TeaModel} * * <p>PopCreateLivePortraitModelScopeProjectResponse</p> */ public class PopCreateLivePortraitModelScopeProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateLivePortraitModelScopeProjectResponseBody body; private PopCreateLivePortraitModelScopeProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateLivePortraitModelScopeProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateLivePortraitModelScopeProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateLivePortraitModelScopeProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateLivePortraitModelScopeProjectResponseBody body); @Override PopCreateLivePortraitModelScopeProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateLivePortraitModelScopeProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateLivePortraitModelScopeProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateLivePortraitModelScopeProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateLivePortraitModelScopeProjectResponseBody body) { this.body = body; return this; } @Override public PopCreateLivePortraitModelScopeProjectResponse build() { return new PopCreateLivePortraitModelScopeProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateLivePortraitModelScopeProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateLivePortraitModelScopeProjectResponseBody} extends {@link TeaModel} * * <p>PopCreateLivePortraitModelScopeProjectResponseBody</p> */ public class PopCreateLivePortraitModelScopeProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateLivePortraitModelScopeProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateLivePortraitModelScopeProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateLivePortraitModelScopeProjectResponseBody build() { return new PopCreateLivePortraitModelScopeProjectResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("Id") private String id; private Data(Builder builder) { this.id = builder.id; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } public static final class Builder { private String id; /** * Id. */ public Builder id(String id) { this.id = id; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateMaterialRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateMaterialRequest} extends {@link RequestModel} * * <p>PopCreateMaterialRequest</p> */ public class PopCreateMaterialRequest extends Request { @Body @NameInMap("CheckStatus") private String checkStatus; @Body @NameInMap("Ext") private String ext; @Body @NameInMap("Intro") private String intro; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("ListStatus") private String listStatus; @Body @NameInMap("Name") private String name; @Body @NameInMap("OssKey") private String ossKey; @Body @NameInMap("Type") private String type; private PopCreateMaterialRequest(Builder builder) { super(builder); this.checkStatus = builder.checkStatus; this.ext = builder.ext; this.intro = builder.intro; this.jwtToken = builder.jwtToken; this.listStatus = builder.listStatus; this.name = builder.name; this.ossKey = builder.ossKey; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static PopCreateMaterialRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<PopCreateMaterialRequest, Builder> { private String checkStatus; private String ext; private String intro; private String jwtToken; private String listStatus; private String name; private String ossKey; private String type; private Builder() { super(); } private Builder(PopCreateMaterialRequest request) { super(request); this.checkStatus = request.checkStatus; this.ext = request.ext; this.intro = request.intro; this.jwtToken = request.jwtToken; this.listStatus = request.listStatus; this.name = request.name; this.ossKey = request.ossKey; this.type = request.type; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.putBodyParameter("CheckStatus", checkStatus); this.checkStatus = checkStatus; return this; } /** * Ext. */ public Builder ext(String ext) { this.putBodyParameter("Ext", ext); this.ext = ext; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.putBodyParameter("ListStatus", listStatus); this.listStatus = listStatus; return this; } /** * Name. */ public Builder name(String name) { this.putBodyParameter("Name", name); this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.putBodyParameter("OssKey", ossKey); this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.putBodyParameter("Type", type); this.type = type; return this; } @Override public PopCreateMaterialRequest build() { return new PopCreateMaterialRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateMaterialResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateMaterialResponse} extends {@link TeaModel} * * <p>PopCreateMaterialResponse</p> */ public class PopCreateMaterialResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateMaterialResponseBody body; private PopCreateMaterialResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateMaterialResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateMaterialResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateMaterialResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateMaterialResponseBody body); @Override PopCreateMaterialResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateMaterialResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateMaterialResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateMaterialResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateMaterialResponseBody body) { this.body = body; return this; } @Override public PopCreateMaterialResponse build() { return new PopCreateMaterialResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateMaterialResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateMaterialResponseBody} extends {@link TeaModel} * * <p>PopCreateMaterialResponseBody</p> */ public class PopCreateMaterialResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateMaterialResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateMaterialResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateMaterialResponseBody build() { return new PopCreateMaterialResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Data(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private String id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectGenerationProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectGenerationProjectRequest} extends {@link RequestModel} * * <p>PopCreateObjectGenerationProjectRequest</p> */ public class PopCreateObjectGenerationProjectRequest extends Request { @Body @NameInMap("BizUsage") private String bizUsage; @Body @NameInMap("ExtInfo") private String extInfo; @Body @NameInMap("Intro") private String intro; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Title") private String title; private PopCreateObjectGenerationProjectRequest(Builder builder) { super(builder); this.bizUsage = builder.bizUsage; this.extInfo = builder.extInfo; this.intro = builder.intro; this.jwtToken = builder.jwtToken; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreateObjectGenerationProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return extInfo */ public String getExtInfo() { return this.extInfo; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreateObjectGenerationProjectRequest, Builder> { private String bizUsage; private String extInfo; private String intro; private String jwtToken; private String title; private Builder() { super(); } private Builder(PopCreateObjectGenerationProjectRequest request) { super(request); this.bizUsage = request.bizUsage; this.extInfo = request.extInfo; this.intro = request.intro; this.jwtToken = request.jwtToken; this.title = request.title; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.putBodyParameter("BizUsage", bizUsage); this.bizUsage = bizUsage; return this; } /** * ExtInfo. */ public Builder extInfo(String extInfo) { this.putBodyParameter("ExtInfo", extInfo); this.extInfo = extInfo; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreateObjectGenerationProjectRequest build() { return new PopCreateObjectGenerationProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectGenerationProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectGenerationProjectResponse} extends {@link TeaModel} * * <p>PopCreateObjectGenerationProjectResponse</p> */ public class PopCreateObjectGenerationProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateObjectGenerationProjectResponseBody body; private PopCreateObjectGenerationProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateObjectGenerationProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateObjectGenerationProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateObjectGenerationProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateObjectGenerationProjectResponseBody body); @Override PopCreateObjectGenerationProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateObjectGenerationProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateObjectGenerationProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateObjectGenerationProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateObjectGenerationProjectResponseBody body) { this.body = body; return this; } @Override public PopCreateObjectGenerationProjectResponse build() { return new PopCreateObjectGenerationProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectGenerationProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectGenerationProjectResponseBody} extends {@link TeaModel} * * <p>PopCreateObjectGenerationProjectResponseBody</p> */ public class PopCreateObjectGenerationProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateObjectGenerationProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateObjectGenerationProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateObjectGenerationProjectResponseBody build() { return new PopCreateObjectGenerationProjectResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("Id") private String id; private Data(Builder builder) { this.id = builder.id; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } public static final class Builder { private String id; /** * Id. */ public Builder id(String id) { this.id = id; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectProjectRequest} extends {@link RequestModel} * * <p>PopCreateObjectProjectRequest</p> */ public class PopCreateObjectProjectRequest extends Request { @Body @NameInMap("AutoBuild") @Validation(required = true) private Boolean autoBuild; @Body @NameInMap("BizUsage") @Validation(required = true) private String bizUsage; @Body @NameInMap("CustomSource") private String customSource; @Body @NameInMap("Dependencies") private String dependencies; @Body @NameInMap("ForeignUid") private String foreignUid; @Body @NameInMap("Intro") private String intro; @Body @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Mode") @Validation(required = true) private String mode; @Body @NameInMap("RecommendStatus") private String recommendStatus; @Body @NameInMap("Title") @Validation(required = true) private String title; private PopCreateObjectProjectRequest(Builder builder) { super(builder); this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.customSource = builder.customSource; this.dependencies = builder.dependencies; this.foreignUid = builder.foreignUid; this.intro = builder.intro; this.jwtToken = builder.jwtToken; this.mode = builder.mode; this.recommendStatus = builder.recommendStatus; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreateObjectProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return foreignUid */ public String getForeignUid() { return this.foreignUid; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return mode */ public String getMode() { return this.mode; } /** * @return recommendStatus */ public String getRecommendStatus() { return this.recommendStatus; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreateObjectProjectRequest, Builder> { private Boolean autoBuild; private String bizUsage; private String customSource; private String dependencies; private String foreignUid; private String intro; private String jwtToken; private String mode; private String recommendStatus; private String title; private Builder() { super(); } private Builder(PopCreateObjectProjectRequest request) { super(request); this.autoBuild = request.autoBuild; this.bizUsage = request.bizUsage; this.customSource = request.customSource; this.dependencies = request.dependencies; this.foreignUid = request.foreignUid; this.intro = request.intro; this.jwtToken = request.jwtToken; this.mode = request.mode; this.recommendStatus = request.recommendStatus; this.title = request.title; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.putBodyParameter("AutoBuild", autoBuild); this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.putBodyParameter("BizUsage", bizUsage); this.bizUsage = bizUsage; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.putBodyParameter("CustomSource", customSource); this.customSource = customSource; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.putBodyParameter("Dependencies", dependencies); this.dependencies = dependencies; return this; } /** * ForeignUid. */ public Builder foreignUid(String foreignUid) { this.putBodyParameter("ForeignUid", foreignUid); this.foreignUid = foreignUid; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putBodyParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Mode. */ public Builder mode(String mode) { this.putBodyParameter("Mode", mode); this.mode = mode; return this; } /** * RecommendStatus. */ public Builder recommendStatus(String recommendStatus) { this.putBodyParameter("RecommendStatus", recommendStatus); this.recommendStatus = recommendStatus; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreateObjectProjectRequest build() { return new PopCreateObjectProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectProjectResponse} extends {@link TeaModel} * * <p>PopCreateObjectProjectResponse</p> */ public class PopCreateObjectProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateObjectProjectResponseBody body; private PopCreateObjectProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateObjectProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateObjectProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateObjectProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateObjectProjectResponseBody body); @Override PopCreateObjectProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateObjectProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateObjectProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateObjectProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateObjectProjectResponseBody body) { this.body = body; return this; } @Override public PopCreateObjectProjectResponse build() { return new PopCreateObjectProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateObjectProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateObjectProjectResponseBody} extends {@link TeaModel} * * <p>PopCreateObjectProjectResponseBody</p> */ public class PopCreateObjectProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("ErrorName") private String errorName; @NameInMap("HttpCode") private Integer httpCode; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateObjectProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.errorName = builder.errorName; this.httpCode = builder.httpCode; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateObjectProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return errorName */ public String getErrorName() { return this.errorName; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String errorName; private Integer httpCode; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * ErrorName. */ public Builder errorName(String errorName) { this.errorName = errorName; return this; } /** * HttpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateObjectProjectResponseBody build() { return new PopCreateObjectProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Token extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private Token(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static Token create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public Token build() { return new Token(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Token") private Token token; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return token */ public Token getToken() { return this.token; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; private Token token; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Token. */ public Builder token(Token token) { this.token = token; return this; } public Dataset build() { return new Dataset(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String modifiedTime; private String name; private String ossKey; private String type; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class SourceToken extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private SourceToken(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static SourceToken create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public SourceToken build() { return new SourceToken(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; @NameInMap("Token") private SourceToken token; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } /** * @return token */ public SourceToken getToken() { return this.token; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; private SourceToken token; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } /** * Token. */ public Builder token(SourceToken token) { this.token = token; return this; } public Source build() { return new Source(this); } } } public static class Data extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RecommendStatus") private String recommendStatus; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.modifiedTime = builder.modifiedTime; this.recommendStatus = builder.recommendStatus; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return recommendStatus */ public String getRecommendStatus() { return this.recommendStatus; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String modifiedTime; private String recommendStatus; private Source source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RecommendStatus. */ public Builder recommendStatus(String recommendStatus) { this.recommendStatus = recommendStatus; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreatePakRenderProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreatePakRenderProjectRequest} extends {@link RequestModel} * * <p>PopCreatePakRenderProjectRequest</p> */ public class PopCreatePakRenderProjectRequest extends Request { @Body @NameInMap("ExtInfo") private String extInfo; @Body @NameInMap("Intro") private String intro; @Body @NameInMap("Title") private String title; private PopCreatePakRenderProjectRequest(Builder builder) { super(builder); this.extInfo = builder.extInfo; this.intro = builder.intro; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreatePakRenderProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return extInfo */ public String getExtInfo() { return this.extInfo; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreatePakRenderProjectRequest, Builder> { private String extInfo; private String intro; private String title; private Builder() { super(); } private Builder(PopCreatePakRenderProjectRequest request) { super(request); this.extInfo = request.extInfo; this.intro = request.intro; this.title = request.title; } /** * ExtInfo. */ public Builder extInfo(String extInfo) { this.putBodyParameter("ExtInfo", extInfo); this.extInfo = extInfo; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreatePakRenderProjectRequest build() { return new PopCreatePakRenderProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreatePakRenderProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreatePakRenderProjectResponse} extends {@link TeaModel} * * <p>PopCreatePakRenderProjectResponse</p> */ public class PopCreatePakRenderProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreatePakRenderProjectResponseBody body; private PopCreatePakRenderProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreatePakRenderProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreatePakRenderProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreatePakRenderProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreatePakRenderProjectResponseBody body); @Override PopCreatePakRenderProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreatePakRenderProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreatePakRenderProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreatePakRenderProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreatePakRenderProjectResponseBody body) { this.body = body; return this; } @Override public PopCreatePakRenderProjectResponse build() { return new PopCreatePakRenderProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreatePakRenderProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreatePakRenderProjectResponseBody} extends {@link TeaModel} * * <p>PopCreatePakRenderProjectResponseBody</p> */ public class PopCreatePakRenderProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreatePakRenderProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreatePakRenderProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreatePakRenderProjectResponseBody build() { return new PopCreatePakRenderProjectResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Boolean autoBuild; private String bizUsage; private String checkStatus; private String createMode; private String createTime; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateTextToAvatarProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateTextToAvatarProjectRequest} extends {@link RequestModel} * * <p>PopCreateTextToAvatarProjectRequest</p> */ public class PopCreateTextToAvatarProjectRequest extends Request { @Body @NameInMap("ExtInfo") private String extInfo; @Body @NameInMap("Intro") private String intro; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Title") private String title; private PopCreateTextToAvatarProjectRequest(Builder builder) { super(builder); this.extInfo = builder.extInfo; this.intro = builder.intro; this.jwtToken = builder.jwtToken; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopCreateTextToAvatarProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return extInfo */ public String getExtInfo() { return this.extInfo; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopCreateTextToAvatarProjectRequest, Builder> { private String extInfo; private String intro; private String jwtToken; private String title; private Builder() { super(); } private Builder(PopCreateTextToAvatarProjectRequest request) { super(request); this.extInfo = request.extInfo; this.intro = request.intro; this.jwtToken = request.jwtToken; this.title = request.title; } /** * ExtInfo. */ public Builder extInfo(String extInfo) { this.putBodyParameter("ExtInfo", extInfo); this.extInfo = extInfo; return this; } /** * Intro. */ public Builder intro(String intro) { this.putBodyParameter("Intro", intro); this.intro = intro; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopCreateTextToAvatarProjectRequest build() { return new PopCreateTextToAvatarProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateTextToAvatarProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateTextToAvatarProjectResponse} extends {@link TeaModel} * * <p>PopCreateTextToAvatarProjectResponse</p> */ public class PopCreateTextToAvatarProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopCreateTextToAvatarProjectResponseBody body; private PopCreateTextToAvatarProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopCreateTextToAvatarProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopCreateTextToAvatarProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopCreateTextToAvatarProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopCreateTextToAvatarProjectResponseBody body); @Override PopCreateTextToAvatarProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopCreateTextToAvatarProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopCreateTextToAvatarProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopCreateTextToAvatarProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopCreateTextToAvatarProjectResponseBody body) { this.body = body; return this; } @Override public PopCreateTextToAvatarProjectResponse build() { return new PopCreateTextToAvatarProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopCreateTextToAvatarProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopCreateTextToAvatarProjectResponseBody} extends {@link TeaModel} * * <p>PopCreateTextToAvatarProjectResponseBody</p> */ public class PopCreateTextToAvatarProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopCreateTextToAvatarProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopCreateTextToAvatarProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopCreateTextToAvatarProjectResponseBody build() { return new PopCreateTextToAvatarProjectResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Boolean autoBuild; private String bizUsage; private String checkStatus; private String createMode; private String createTime; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopDeleteMaterialRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopDeleteMaterialRequest} extends {@link RequestModel} * * <p>PopDeleteMaterialRequest</p> */ public class PopDeleteMaterialRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("MaterialId") @Validation(required = true) private String materialId; private PopDeleteMaterialRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.materialId = builder.materialId; } public static Builder builder() { return new Builder(); } public static PopDeleteMaterialRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return materialId */ public String getMaterialId() { return this.materialId; } public static final class Builder extends Request.Builder<PopDeleteMaterialRequest, Builder> { private String jwtToken; private String materialId; private Builder() { super(); } private Builder(PopDeleteMaterialRequest request) { super(request); this.jwtToken = request.jwtToken; this.materialId = request.materialId; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * MaterialId. */ public Builder materialId(String materialId) { this.putQueryParameter("MaterialId", materialId); this.materialId = materialId; return this; } @Override public PopDeleteMaterialRequest build() { return new PopDeleteMaterialRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopDeleteMaterialResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopDeleteMaterialResponse} extends {@link TeaModel} * * <p>PopDeleteMaterialResponse</p> */ public class PopDeleteMaterialResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopDeleteMaterialResponseBody body; private PopDeleteMaterialResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopDeleteMaterialResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopDeleteMaterialResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopDeleteMaterialResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopDeleteMaterialResponseBody body); @Override PopDeleteMaterialResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopDeleteMaterialResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopDeleteMaterialResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopDeleteMaterialResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopDeleteMaterialResponseBody body) { this.body = body; return this; } @Override public PopDeleteMaterialResponse build() { return new PopDeleteMaterialResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopDeleteMaterialResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopDeleteMaterialResponseBody} extends {@link TeaModel} * * <p>PopDeleteMaterialResponseBody</p> */ public class PopDeleteMaterialResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopDeleteMaterialResponseBody(Builder builder) { this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopDeleteMaterialResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopDeleteMaterialResponseBody build() { return new PopDeleteMaterialResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopGetAITryOnJobRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopGetAITryOnJobRequest} extends {@link RequestModel} * * <p>PopGetAITryOnJobRequest</p> */ public class PopGetAITryOnJobRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; @Query @NameInMap("WithMaterial") private Boolean withMaterial; @Query @NameInMap("WithResult") private Boolean withResult; private PopGetAITryOnJobRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; this.withMaterial = builder.withMaterial; this.withResult = builder.withResult; } public static Builder builder() { return new Builder(); } public static PopGetAITryOnJobRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } /** * @return withMaterial */ public Boolean getWithMaterial() { return this.withMaterial; } /** * @return withResult */ public Boolean getWithResult() { return this.withResult; } public static final class Builder extends Request.Builder<PopGetAITryOnJobRequest, Builder> { private String jwtToken; private String projectId; private Boolean withMaterial; private Boolean withResult; private Builder() { super(); } private Builder(PopGetAITryOnJobRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; this.withMaterial = request.withMaterial; this.withResult = request.withResult; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } /** * WithMaterial. */ public Builder withMaterial(Boolean withMaterial) { this.putQueryParameter("WithMaterial", withMaterial); this.withMaterial = withMaterial; return this; } /** * WithResult. */ public Builder withResult(Boolean withResult) { this.putQueryParameter("WithResult", withResult); this.withResult = withResult; return this; } @Override public PopGetAITryOnJobRequest build() { return new PopGetAITryOnJobRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopGetAITryOnJobResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopGetAITryOnJobResponse} extends {@link TeaModel} * * <p>PopGetAITryOnJobResponse</p> */ public class PopGetAITryOnJobResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopGetAITryOnJobResponseBody body; private PopGetAITryOnJobResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopGetAITryOnJobResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopGetAITryOnJobResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopGetAITryOnJobResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopGetAITryOnJobResponseBody body); @Override PopGetAITryOnJobResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopGetAITryOnJobResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopGetAITryOnJobResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopGetAITryOnJobResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopGetAITryOnJobResponseBody body) { this.body = body; return this; } @Override public PopGetAITryOnJobResponse build() { return new PopGetAITryOnJobResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopGetAITryOnJobResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopGetAITryOnJobResponseBody} extends {@link TeaModel} * * <p>PopGetAITryOnJobResponseBody</p> */ public class PopGetAITryOnJobResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopGetAITryOnJobResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopGetAITryOnJobResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopGetAITryOnJobResponseBody build() { return new PopGetAITryOnJobResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private Long id; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("Id") private Long id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private Long id; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class SkuProps extends TeaModel { @NameInMap("Name") private String name; @NameInMap("Options") private java.util.List < String > options; private SkuProps(Builder builder) { this.name = builder.name; this.options = builder.options; } public static Builder builder() { return new Builder(); } public static SkuProps create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return options */ public java.util.List < String > getOptions() { return this.options; } public static final class Builder { private String name; private java.util.List < String > options; /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Options. */ public Builder options(java.util.List < String > options) { this.options = options; return this; } public SkuProps build() { return new SkuProps(this); } } } public static class Skus extends TeaModel { @NameInMap("Color") private String color; @NameInMap("Cover") private String cover; @NameInMap("Size") private String size; @NameInMap("Status") private String status; private Skus(Builder builder) { this.color = builder.color; this.cover = builder.cover; this.size = builder.size; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static Skus create() { return builder().build(); } /** * @return color */ public String getColor() { return this.color; } /** * @return cover */ public String getCover() { return this.cover; } /** * @return size */ public String getSize() { return this.size; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String color; private String cover; private String size; private String status; /** * Color. */ public Builder color(String color) { this.color = color; return this; } /** * Cover. */ public Builder cover(String cover) { this.cover = cover; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public Skus build() { return new Skus(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Part") private String part; @NameInMap("Size") private String size; @NameInMap("SkuProps") private java.util.List < SkuProps> skuProps; @NameInMap("Skus") private java.util.List < Skus> skus; @NameInMap("Status") private java.util.Map < String, String > status; @NameInMap("Type") private String type; @NameInMap("Version") private Integer version; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.part = builder.part; this.size = builder.size; this.skuProps = builder.skuProps; this.skus = builder.skus; this.status = builder.status; this.type = builder.type; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return part */ public String getPart() { return this.part; } /** * @return size */ public String getSize() { return this.size; } /** * @return skuProps */ public java.util.List < SkuProps> getSkuProps() { return this.skuProps; } /** * @return skus */ public java.util.List < Skus> getSkus() { return this.skus; } /** * @return status */ public java.util.Map < String, String > getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String name; private String ossKey; private String part; private String size; private java.util.List < SkuProps> skuProps; private java.util.List < Skus> skus; private java.util.Map < String, String > status; private String type; private Integer version; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Part. */ public Builder part(String part) { this.part = part; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * SkuProps. */ public Builder skuProps(java.util.List < SkuProps> skuProps) { this.skuProps = skuProps; return this; } /** * Skus. */ public Builder skus(java.util.List < Skus> skus) { this.skus = skus; return this; } /** * Status. */ public Builder status(java.util.Map < String, String > status) { this.status = status; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Version. */ public Builder version(Integer version) { this.version = version; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private Long id; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class Token extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private Token(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static Token create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public Token build() { return new Token(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; @NameInMap("Token") private Token token; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } /** * @return token */ public Token getToken() { return this.token; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; private Token token; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } /** * Token. */ public Builder token(Token token) { this.token = token; return this; } public Source build() { return new Source(this); } } } public static class DummyProjectInfo extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private DummyProjectInfo(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DummyProjectInfo create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private Source source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public DummyProjectInfo build() { return new DummyProjectInfo(this); } } } public static class Bottoms extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Bottoms(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Bottoms create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Bottoms build() { return new Bottoms(this); } } } public static class Model extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Model(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Model create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Model build() { return new Model(this); } } } public static class Suit extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Suit(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Suit create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Suit build() { return new Suit(this); } } } public static class Tops extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Tops(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Tops create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Tops build() { return new Tops(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Bottoms") private Bottoms bottoms; @NameInMap("ClothingType") private String clothingType; @NameInMap("Model") private Model model; @NameInMap("ShoeType") private String shoeType; @NameInMap("Suit") private Suit suit; @NameInMap("Tops") private Tops tops; private MaterialInfo(Builder builder) { this.bottoms = builder.bottoms; this.clothingType = builder.clothingType; this.model = builder.model; this.shoeType = builder.shoeType; this.suit = builder.suit; this.tops = builder.tops; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return bottoms */ public Bottoms getBottoms() { return this.bottoms; } /** * @return clothingType */ public String getClothingType() { return this.clothingType; } /** * @return model */ public Model getModel() { return this.model; } /** * @return shoeType */ public String getShoeType() { return this.shoeType; } /** * @return suit */ public Suit getSuit() { return this.suit; } /** * @return tops */ public Tops getTops() { return this.tops; } public static final class Builder { private Bottoms bottoms; private String clothingType; private Model model; private String shoeType; private Suit suit; private Tops tops; /** * Bottoms. */ public Builder bottoms(Bottoms bottoms) { this.bottoms = bottoms; return this; } /** * ClothingType. */ public Builder clothingType(String clothingType) { this.clothingType = clothingType; return this; } /** * Model. */ public Builder model(Model model) { this.model = model; return this; } /** * ShoeType. */ public Builder shoeType(String shoeType) { this.shoeType = shoeType; return this; } /** * Suit. */ public Builder suit(Suit suit) { this.suit = suit; return this; } /** * Tops. */ public Builder tops(Tops tops) { this.tops = tops; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class Feedback extends TeaModel { @NameInMap("DislikeTags") private java.util.List < Integer > dislikeTags; @NameInMap("OtherReason") private String otherReason; @NameInMap("ProjectId") private Long projectId; @NameInMap("Rating") private Integer rating; private Feedback(Builder builder) { this.dislikeTags = builder.dislikeTags; this.otherReason = builder.otherReason; this.projectId = builder.projectId; this.rating = builder.rating; } public static Builder builder() { return new Builder(); } public static Feedback create() { return builder().build(); } /** * @return dislikeTags */ public java.util.List < Integer > getDislikeTags() { return this.dislikeTags; } /** * @return otherReason */ public String getOtherReason() { return this.otherReason; } /** * @return projectId */ public Long getProjectId() { return this.projectId; } /** * @return rating */ public Integer getRating() { return this.rating; } public static final class Builder { private java.util.List < Integer > dislikeTags; private String otherReason; private Long projectId; private Integer rating; /** * DislikeTags. */ public Builder dislikeTags(java.util.List < Integer > dislikeTags) { this.dislikeTags = dislikeTags; return this; } /** * OtherReason. */ public Builder otherReason(String otherReason) { this.otherReason = otherReason; return this; } /** * ProjectId. */ public Builder projectId(Long projectId) { this.projectId = projectId; return this; } /** * Rating. */ public Builder rating(Integer rating) { this.rating = rating; return this; } public Feedback build() { return new Feedback(this); } } } public static class SubProjectInfoBuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private SubProjectInfoBuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static SubProjectInfoBuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private Long id; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public SubProjectInfoBuildDetail build() { return new SubProjectInfoBuildDetail(this); } } } public static class DatasetPolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private DatasetPolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static DatasetPolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public DatasetPolicy build() { return new DatasetPolicy(this); } } } public static class SubProjectInfoDataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("Id") private Long id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private DatasetPolicy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private SubProjectInfoDataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static SubProjectInfoDataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public DatasetPolicy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private Long id; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private DatasetPolicy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(DatasetPolicy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public SubProjectInfoDataset build() { return new SubProjectInfoDataset(this); } } } public static class ClothesSkuProps extends TeaModel { @NameInMap("Name") private String name; @NameInMap("Options") private java.util.List < String > options; private ClothesSkuProps(Builder builder) { this.name = builder.name; this.options = builder.options; } public static Builder builder() { return new Builder(); } public static ClothesSkuProps create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return options */ public java.util.List < String > getOptions() { return this.options; } public static final class Builder { private String name; private java.util.List < String > options; /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Options. */ public Builder options(java.util.List < String > options) { this.options = options; return this; } public ClothesSkuProps build() { return new ClothesSkuProps(this); } } } public static class ClothesSkus extends TeaModel { @NameInMap("Color") private String color; @NameInMap("Cover") private String cover; @NameInMap("Size") private String size; @NameInMap("Status") private String status; private ClothesSkus(Builder builder) { this.color = builder.color; this.cover = builder.cover; this.size = builder.size; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static ClothesSkus create() { return builder().build(); } /** * @return color */ public String getColor() { return this.color; } /** * @return cover */ public String getCover() { return this.cover; } /** * @return size */ public String getSize() { return this.size; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String color; private String cover; private String size; private String status; /** * Color. */ public Builder color(String color) { this.color = color; return this; } /** * Cover. */ public Builder cover(String cover) { this.cover = cover; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public ClothesSkus build() { return new ClothesSkus(this); } } } public static class SourceClothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Part") private String part; @NameInMap("Size") private String size; @NameInMap("SkuProps") private java.util.List < ClothesSkuProps> skuProps; @NameInMap("Skus") private java.util.List < ClothesSkus> skus; @NameInMap("Status") private java.util.Map < String, String > status; @NameInMap("Type") private String type; @NameInMap("Version") private Integer version; private SourceClothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.part = builder.part; this.size = builder.size; this.skuProps = builder.skuProps; this.skus = builder.skus; this.status = builder.status; this.type = builder.type; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static SourceClothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return part */ public String getPart() { return this.part; } /** * @return size */ public String getSize() { return this.size; } /** * @return skuProps */ public java.util.List < ClothesSkuProps> getSkuProps() { return this.skuProps; } /** * @return skus */ public java.util.List < ClothesSkus> getSkus() { return this.skus; } /** * @return status */ public java.util.Map < String, String > getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String name; private String ossKey; private String part; private String size; private java.util.List < ClothesSkuProps> skuProps; private java.util.List < ClothesSkus> skus; private java.util.Map < String, String > status; private String type; private Integer version; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Part. */ public Builder part(String part) { this.part = part; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * SkuProps. */ public Builder skuProps(java.util.List < ClothesSkuProps> skuProps) { this.skuProps = skuProps; return this; } /** * Skus. */ public Builder skus(java.util.List < ClothesSkus> skus) { this.skus = skus; return this; } /** * Status. */ public Builder status(java.util.Map < String, String > status) { this.status = status; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Version. */ public Builder version(Integer version) { this.version = version; return this; } public SourceClothes build() { return new SourceClothes(this); } } } public static class SubProjectInfoSourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SubProjectInfoSourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SubProjectInfoSourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SubProjectInfoSourcePolicy build() { return new SubProjectInfoSourcePolicy(this); } } } public static class SourceSourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceSourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceSourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private Long id; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceSourceFiles build() { return new SourceSourceFiles(this); } } } public static class SourceToken extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private SourceToken(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static SourceToken create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public SourceToken build() { return new SourceToken(this); } } } public static class SubProjectInfoSource extends TeaModel { @NameInMap("Clothes") private java.util.List < SourceClothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SubProjectInfoSourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceSourceFiles> sourceFiles; @NameInMap("Token") private SourceToken token; private SubProjectInfoSource(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static SubProjectInfoSource create() { return builder().build(); } /** * @return clothes */ public java.util.List < SourceClothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SubProjectInfoSourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceSourceFiles> getSourceFiles() { return this.sourceFiles; } /** * @return token */ public SourceToken getToken() { return this.token; } public static final class Builder { private java.util.List < SourceClothes> clothes; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String ossKey; private SubProjectInfoSourcePolicy policy; private java.util.List < SourceSourceFiles> sourceFiles; private SourceToken token; /** * Clothes. */ public Builder clothes(java.util.List < SourceClothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SubProjectInfoSourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceSourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } /** * Token. */ public Builder token(SourceToken token) { this.token = token; return this; } public SubProjectInfoSource build() { return new SubProjectInfoSource(this); } } } public static class SubProjectInfo extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private SubProjectInfoBuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private SubProjectInfoDataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private SubProjectInfoSource source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private SubProjectInfo(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static SubProjectInfo create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public SubProjectInfoBuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public SubProjectInfoDataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public SubProjectInfoSource getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private SubProjectInfoBuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private SubProjectInfoDataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private SubProjectInfoSource source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(SubProjectInfoBuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(SubProjectInfoDataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(SubProjectInfoSource source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public SubProjectInfo build() { return new SubProjectInfo(this); } } } public static class SubTasks extends TeaModel { @NameInMap("Feedback") private Feedback feedback; @NameInMap("SubProjectInfo") private SubProjectInfo subProjectInfo; private SubTasks(Builder builder) { this.feedback = builder.feedback; this.subProjectInfo = builder.subProjectInfo; } public static Builder builder() { return new Builder(); } public static SubTasks create() { return builder().build(); } /** * @return feedback */ public Feedback getFeedback() { return this.feedback; } /** * @return subProjectInfo */ public SubProjectInfo getSubProjectInfo() { return this.subProjectInfo; } public static final class Builder { private Feedback feedback; private SubProjectInfo subProjectInfo; /** * Feedback. */ public Builder feedback(Feedback feedback) { this.feedback = feedback; return this; } /** * SubProjectInfo. */ public Builder subProjectInfo(SubProjectInfo subProjectInfo) { this.subProjectInfo = subProjectInfo; return this; } public SubTasks build() { return new SubTasks(this); } } } public static class Data extends TeaModel { @NameInMap("DummyProjectInfo") private DummyProjectInfo dummyProjectInfo; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("SubTasks") private java.util.List < SubTasks> subTasks; private Data(Builder builder) { this.dummyProjectInfo = builder.dummyProjectInfo; this.materialInfo = builder.materialInfo; this.subTasks = builder.subTasks; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return dummyProjectInfo */ public DummyProjectInfo getDummyProjectInfo() { return this.dummyProjectInfo; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return subTasks */ public java.util.List < SubTasks> getSubTasks() { return this.subTasks; } public static final class Builder { private DummyProjectInfo dummyProjectInfo; private MaterialInfo materialInfo; private java.util.List < SubTasks> subTasks; /** * DummyProjectInfo. */ public Builder dummyProjectInfo(DummyProjectInfo dummyProjectInfo) { this.dummyProjectInfo = dummyProjectInfo; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * SubTasks. */ public Builder subTasks(java.util.List < SubTasks> subTasks) { this.subTasks = subTasks; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListAITryOnJobsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListAITryOnJobsRequest} extends {@link RequestModel} * * <p>PopListAITryOnJobsRequest</p> */ public class PopListAITryOnJobsRequest extends Request { @Body @NameInMap("Current") private Integer current; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Size") private Integer size; private PopListAITryOnJobsRequest(Builder builder) { super(builder); this.current = builder.current; this.jwtToken = builder.jwtToken; this.size = builder.size; } public static Builder builder() { return new Builder(); } public static PopListAITryOnJobsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return size */ public Integer getSize() { return this.size; } public static final class Builder extends Request.Builder<PopListAITryOnJobsRequest, Builder> { private Integer current; private String jwtToken; private Integer size; private Builder() { super(); } private Builder(PopListAITryOnJobsRequest request) { super(request); this.current = request.current; this.jwtToken = request.jwtToken; this.size = request.size; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } @Override public PopListAITryOnJobsRequest build() { return new PopListAITryOnJobsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListAITryOnJobsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListAITryOnJobsResponse} extends {@link TeaModel} * * <p>PopListAITryOnJobsResponse</p> */ public class PopListAITryOnJobsResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListAITryOnJobsResponseBody body; private PopListAITryOnJobsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListAITryOnJobsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListAITryOnJobsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListAITryOnJobsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListAITryOnJobsResponseBody body); @Override PopListAITryOnJobsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListAITryOnJobsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListAITryOnJobsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListAITryOnJobsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListAITryOnJobsResponseBody body) { this.body = body; return this; } @Override public PopListAITryOnJobsResponse build() { return new PopListAITryOnJobsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListAITryOnJobsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListAITryOnJobsResponseBody} extends {@link TeaModel} * * <p>PopListAITryOnJobsResponseBody</p> */ public class PopListAITryOnJobsResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListAITryOnJobsResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListAITryOnJobsResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListAITryOnJobsResponseBody build() { return new PopListAITryOnJobsResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private Long id; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("Id") private Long id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private Long id; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class SkuProps extends TeaModel { @NameInMap("Name") private String name; @NameInMap("Options") private java.util.List < String > options; private SkuProps(Builder builder) { this.name = builder.name; this.options = builder.options; } public static Builder builder() { return new Builder(); } public static SkuProps create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return options */ public java.util.List < String > getOptions() { return this.options; } public static final class Builder { private String name; private java.util.List < String > options; /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Options. */ public Builder options(java.util.List < String > options) { this.options = options; return this; } public SkuProps build() { return new SkuProps(this); } } } public static class Skus extends TeaModel { @NameInMap("Color") private String color; @NameInMap("Cover") private String cover; @NameInMap("Size") private String size; @NameInMap("Status") private String status; private Skus(Builder builder) { this.color = builder.color; this.cover = builder.cover; this.size = builder.size; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static Skus create() { return builder().build(); } /** * @return color */ public String getColor() { return this.color; } /** * @return cover */ public String getCover() { return this.cover; } /** * @return size */ public String getSize() { return this.size; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String color; private String cover; private String size; private String status; /** * Color. */ public Builder color(String color) { this.color = color; return this; } /** * Cover. */ public Builder cover(String cover) { this.cover = cover; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public Skus build() { return new Skus(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Part") private String part; @NameInMap("Size") private String size; @NameInMap("SkuProps") private java.util.List < SkuProps> skuProps; @NameInMap("Skus") private java.util.List < Skus> skus; @NameInMap("Status") private java.util.Map < String, String > status; @NameInMap("Type") private String type; @NameInMap("Version") private Integer version; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.part = builder.part; this.size = builder.size; this.skuProps = builder.skuProps; this.skus = builder.skus; this.status = builder.status; this.type = builder.type; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return part */ public String getPart() { return this.part; } /** * @return size */ public String getSize() { return this.size; } /** * @return skuProps */ public java.util.List < SkuProps> getSkuProps() { return this.skuProps; } /** * @return skus */ public java.util.List < Skus> getSkus() { return this.skus; } /** * @return status */ public java.util.Map < String, String > getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String name; private String ossKey; private String part; private String size; private java.util.List < SkuProps> skuProps; private java.util.List < Skus> skus; private java.util.Map < String, String > status; private String type; private Integer version; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Part. */ public Builder part(String part) { this.part = part; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * SkuProps. */ public Builder skuProps(java.util.List < SkuProps> skuProps) { this.skuProps = skuProps; return this; } /** * Skus. */ public Builder skus(java.util.List < Skus> skus) { this.skus = skus; return this; } /** * Status. */ public Builder status(java.util.Map < String, String > status) { this.status = status; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Version. */ public Builder version(Integer version) { this.version = version; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private Long id; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class Token extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private Token(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static Token create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public Token build() { return new Token(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; @NameInMap("Token") private Token token; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } /** * @return token */ public Token getToken() { return this.token; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; private Token token; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } /** * Token. */ public Builder token(Token token) { this.token = token; return this; } public Source build() { return new Source(this); } } } public static class DummyProjectInfo extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private DummyProjectInfo(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DummyProjectInfo create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private Source source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public DummyProjectInfo build() { return new DummyProjectInfo(this); } } } public static class Bottoms extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Bottoms(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Bottoms create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Bottoms build() { return new Bottoms(this); } } } public static class Model extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Model(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Model create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Model build() { return new Model(this); } } } public static class Suit extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Suit(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Suit create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Suit build() { return new Suit(this); } } } public static class Tops extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private Long id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Tops(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Tops create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private Long id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Tops build() { return new Tops(this); } } } public static class MaterialInfo extends TeaModel { @NameInMap("Bottoms") private Bottoms bottoms; @NameInMap("ClothingType") private String clothingType; @NameInMap("Model") private Model model; @NameInMap("ShoeType") private String shoeType; @NameInMap("Suit") private Suit suit; @NameInMap("Tops") private Tops tops; private MaterialInfo(Builder builder) { this.bottoms = builder.bottoms; this.clothingType = builder.clothingType; this.model = builder.model; this.shoeType = builder.shoeType; this.suit = builder.suit; this.tops = builder.tops; } public static Builder builder() { return new Builder(); } public static MaterialInfo create() { return builder().build(); } /** * @return bottoms */ public Bottoms getBottoms() { return this.bottoms; } /** * @return clothingType */ public String getClothingType() { return this.clothingType; } /** * @return model */ public Model getModel() { return this.model; } /** * @return shoeType */ public String getShoeType() { return this.shoeType; } /** * @return suit */ public Suit getSuit() { return this.suit; } /** * @return tops */ public Tops getTops() { return this.tops; } public static final class Builder { private Bottoms bottoms; private String clothingType; private Model model; private String shoeType; private Suit suit; private Tops tops; /** * Bottoms. */ public Builder bottoms(Bottoms bottoms) { this.bottoms = bottoms; return this; } /** * ClothingType. */ public Builder clothingType(String clothingType) { this.clothingType = clothingType; return this; } /** * Model. */ public Builder model(Model model) { this.model = model; return this; } /** * ShoeType. */ public Builder shoeType(String shoeType) { this.shoeType = shoeType; return this; } /** * Suit. */ public Builder suit(Suit suit) { this.suit = suit; return this; } /** * Tops. */ public Builder tops(Tops tops) { this.tops = tops; return this; } public MaterialInfo build() { return new MaterialInfo(this); } } } public static class Feedback extends TeaModel { @NameInMap("DislikeTags") private java.util.List < Integer > dislikeTags; @NameInMap("OtherReason") private String otherReason; @NameInMap("ProjectId") private Long projectId; @NameInMap("Rating") private Integer rating; private Feedback(Builder builder) { this.dislikeTags = builder.dislikeTags; this.otherReason = builder.otherReason; this.projectId = builder.projectId; this.rating = builder.rating; } public static Builder builder() { return new Builder(); } public static Feedback create() { return builder().build(); } /** * @return dislikeTags */ public java.util.List < Integer > getDislikeTags() { return this.dislikeTags; } /** * @return otherReason */ public String getOtherReason() { return this.otherReason; } /** * @return projectId */ public Long getProjectId() { return this.projectId; } /** * @return rating */ public Integer getRating() { return this.rating; } public static final class Builder { private java.util.List < Integer > dislikeTags; private String otherReason; private Long projectId; private Integer rating; /** * DislikeTags. */ public Builder dislikeTags(java.util.List < Integer > dislikeTags) { this.dislikeTags = dislikeTags; return this; } /** * OtherReason. */ public Builder otherReason(String otherReason) { this.otherReason = otherReason; return this; } /** * ProjectId. */ public Builder projectId(Long projectId) { this.projectId = projectId; return this; } /** * Rating. */ public Builder rating(Integer rating) { this.rating = rating; return this; } public Feedback build() { return new Feedback(this); } } } public static class SubProjectInfoBuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private SubProjectInfoBuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static SubProjectInfoBuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private Long id; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public SubProjectInfoBuildDetail build() { return new SubProjectInfoBuildDetail(this); } } } public static class DatasetPolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private DatasetPolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static DatasetPolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public DatasetPolicy build() { return new DatasetPolicy(this); } } } public static class SubProjectInfoDataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("Id") private Long id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private DatasetPolicy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private SubProjectInfoDataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static SubProjectInfoDataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return id */ public Long getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public DatasetPolicy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private Long id; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private DatasetPolicy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(DatasetPolicy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public SubProjectInfoDataset build() { return new SubProjectInfoDataset(this); } } } public static class ClothesSkuProps extends TeaModel { @NameInMap("Name") private String name; @NameInMap("Options") private java.util.List < String > options; private ClothesSkuProps(Builder builder) { this.name = builder.name; this.options = builder.options; } public static Builder builder() { return new Builder(); } public static ClothesSkuProps create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return options */ public java.util.List < String > getOptions() { return this.options; } public static final class Builder { private String name; private java.util.List < String > options; /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Options. */ public Builder options(java.util.List < String > options) { this.options = options; return this; } public ClothesSkuProps build() { return new ClothesSkuProps(this); } } } public static class ClothesSkus extends TeaModel { @NameInMap("Color") private String color; @NameInMap("Cover") private String cover; @NameInMap("Size") private String size; @NameInMap("Status") private String status; private ClothesSkus(Builder builder) { this.color = builder.color; this.cover = builder.cover; this.size = builder.size; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static ClothesSkus create() { return builder().build(); } /** * @return color */ public String getColor() { return this.color; } /** * @return cover */ public String getCover() { return this.cover; } /** * @return size */ public String getSize() { return this.size; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String color; private String cover; private String size; private String status; /** * Color. */ public Builder color(String color) { this.color = color; return this; } /** * Cover. */ public Builder cover(String cover) { this.cover = cover; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public ClothesSkus build() { return new ClothesSkus(this); } } } public static class SourceClothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Part") private String part; @NameInMap("Size") private String size; @NameInMap("SkuProps") private java.util.List < ClothesSkuProps> skuProps; @NameInMap("Skus") private java.util.List < ClothesSkus> skus; @NameInMap("Status") private java.util.Map < String, String > status; @NameInMap("Type") private String type; @NameInMap("Version") private Integer version; private SourceClothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.part = builder.part; this.size = builder.size; this.skuProps = builder.skuProps; this.skus = builder.skus; this.status = builder.status; this.type = builder.type; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static SourceClothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return part */ public String getPart() { return this.part; } /** * @return size */ public String getSize() { return this.size; } /** * @return skuProps */ public java.util.List < ClothesSkuProps> getSkuProps() { return this.skuProps; } /** * @return skus */ public java.util.List < ClothesSkus> getSkus() { return this.skus; } /** * @return status */ public java.util.Map < String, String > getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } /** * @return version */ public Integer getVersion() { return this.version; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String name; private String ossKey; private String part; private String size; private java.util.List < ClothesSkuProps> skuProps; private java.util.List < ClothesSkus> skus; private java.util.Map < String, String > status; private String type; private Integer version; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Part. */ public Builder part(String part) { this.part = part; return this; } /** * Size. */ public Builder size(String size) { this.size = size; return this; } /** * SkuProps. */ public Builder skuProps(java.util.List < ClothesSkuProps> skuProps) { this.skuProps = skuProps; return this; } /** * Skus. */ public Builder skus(java.util.List < ClothesSkus> skus) { this.skus = skus; return this; } /** * Status. */ public Builder status(java.util.Map < String, String > status) { this.status = status; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Version. */ public Builder version(Integer version) { this.version = version; return this; } public SourceClothes build() { return new SourceClothes(this); } } } public static class SubProjectInfoSourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SubProjectInfoSourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SubProjectInfoSourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SubProjectInfoSourcePolicy build() { return new SubProjectInfoSourcePolicy(this); } } } public static class SourceSourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceSourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceSourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private Long id; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceSourceFiles build() { return new SourceSourceFiles(this); } } } public static class SourceToken extends TeaModel { @NameInMap("AccessKeyId") private String accessKeyId; @NameInMap("AccessKeySecret") private String accessKeySecret; @NameInMap("Dir") private String dir; @NameInMap("Expiration") private String expiration; @NameInMap("Host") private String host; @NameInMap("SecurityToken") private String securityToken; private SourceToken(Builder builder) { this.accessKeyId = builder.accessKeyId; this.accessKeySecret = builder.accessKeySecret; this.dir = builder.dir; this.expiration = builder.expiration; this.host = builder.host; this.securityToken = builder.securityToken; } public static Builder builder() { return new Builder(); } public static SourceToken create() { return builder().build(); } /** * @return accessKeyId */ public String getAccessKeyId() { return this.accessKeyId; } /** * @return accessKeySecret */ public String getAccessKeySecret() { return this.accessKeySecret; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expiration */ public String getExpiration() { return this.expiration; } /** * @return host */ public String getHost() { return this.host; } /** * @return securityToken */ public String getSecurityToken() { return this.securityToken; } public static final class Builder { private String accessKeyId; private String accessKeySecret; private String dir; private String expiration; private String host; private String securityToken; /** * AccessKeyId. */ public Builder accessKeyId(String accessKeyId) { this.accessKeyId = accessKeyId; return this; } /** * AccessKeySecret. */ public Builder accessKeySecret(String accessKeySecret) { this.accessKeySecret = accessKeySecret; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expiration. */ public Builder expiration(String expiration) { this.expiration = expiration; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * SecurityToken. */ public Builder securityToken(String securityToken) { this.securityToken = securityToken; return this; } public SourceToken build() { return new SourceToken(this); } } } public static class SubProjectInfoSource extends TeaModel { @NameInMap("Clothes") private java.util.List < SourceClothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Id") private Long id; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SubProjectInfoSourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceSourceFiles> sourceFiles; @NameInMap("Token") private SourceToken token; private SubProjectInfoSource(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.id = builder.id; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; this.token = builder.token; } public static Builder builder() { return new Builder(); } public static SubProjectInfoSource create() { return builder().build(); } /** * @return clothes */ public java.util.List < SourceClothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return id */ public Long getId() { return this.id; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SubProjectInfoSourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceSourceFiles> getSourceFiles() { return this.sourceFiles; } /** * @return token */ public SourceToken getToken() { return this.token; } public static final class Builder { private java.util.List < SourceClothes> clothes; private String createTime; private Boolean deleted; private Long id; private String modifiedTime; private String ossKey; private SubProjectInfoSourcePolicy policy; private java.util.List < SourceSourceFiles> sourceFiles; private SourceToken token; /** * Clothes. */ public Builder clothes(java.util.List < SourceClothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Id. */ public Builder id(Long id) { this.id = id; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SubProjectInfoSourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceSourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } /** * Token. */ public Builder token(SourceToken token) { this.token = token; return this; } public SubProjectInfoSource build() { return new SubProjectInfoSource(this); } } } public static class SubProjectInfo extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private SubProjectInfoBuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private SubProjectInfoDataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private SubProjectInfoSource source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private SubProjectInfo(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static SubProjectInfo create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public SubProjectInfoBuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public SubProjectInfoDataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public SubProjectInfoSource getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private SubProjectInfoBuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private SubProjectInfoDataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private SubProjectInfoSource source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(SubProjectInfoBuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(SubProjectInfoDataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(SubProjectInfoSource source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public SubProjectInfo build() { return new SubProjectInfo(this); } } } public static class SubTasks extends TeaModel { @NameInMap("Feedback") private Feedback feedback; @NameInMap("SubProjectInfo") private SubProjectInfo subProjectInfo; private SubTasks(Builder builder) { this.feedback = builder.feedback; this.subProjectInfo = builder.subProjectInfo; } public static Builder builder() { return new Builder(); } public static SubTasks create() { return builder().build(); } /** * @return feedback */ public Feedback getFeedback() { return this.feedback; } /** * @return subProjectInfo */ public SubProjectInfo getSubProjectInfo() { return this.subProjectInfo; } public static final class Builder { private Feedback feedback; private SubProjectInfo subProjectInfo; /** * Feedback. */ public Builder feedback(Feedback feedback) { this.feedback = feedback; return this; } /** * SubProjectInfo. */ public Builder subProjectInfo(SubProjectInfo subProjectInfo) { this.subProjectInfo = subProjectInfo; return this; } public SubTasks build() { return new SubTasks(this); } } } public static class Data extends TeaModel { @NameInMap("DummyProjectInfo") private DummyProjectInfo dummyProjectInfo; @NameInMap("MaterialInfo") private MaterialInfo materialInfo; @NameInMap("SubTasks") private java.util.List < SubTasks> subTasks; private Data(Builder builder) { this.dummyProjectInfo = builder.dummyProjectInfo; this.materialInfo = builder.materialInfo; this.subTasks = builder.subTasks; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return dummyProjectInfo */ public DummyProjectInfo getDummyProjectInfo() { return this.dummyProjectInfo; } /** * @return materialInfo */ public MaterialInfo getMaterialInfo() { return this.materialInfo; } /** * @return subTasks */ public java.util.List < SubTasks> getSubTasks() { return this.subTasks; } public static final class Builder { private DummyProjectInfo dummyProjectInfo; private MaterialInfo materialInfo; private java.util.List < SubTasks> subTasks; /** * DummyProjectInfo. */ public Builder dummyProjectInfo(DummyProjectInfo dummyProjectInfo) { this.dummyProjectInfo = dummyProjectInfo; return this; } /** * MaterialInfo. */ public Builder materialInfo(MaterialInfo materialInfo) { this.materialInfo = materialInfo; return this; } /** * SubTasks. */ public Builder subTasks(java.util.List < SubTasks> subTasks) { this.subTasks = subTasks; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListCommonMaterialsAllRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListCommonMaterialsAllRequest} extends {@link RequestModel} * * <p>PopListCommonMaterialsAllRequest</p> */ public class PopListCommonMaterialsAllRequest extends Request { @Body @NameInMap("Current") private Integer current; @Query @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ListStatus") private String listStatus; @Query @NameInMap("Name") private String name; @Body @NameInMap("Size") private Integer size; @Query @NameInMap("Tags") private String tags; @Query @NameInMap("Type") private String type; private PopListCommonMaterialsAllRequest(Builder builder) { super(builder); this.current = builder.current; this.jwtToken = builder.jwtToken; this.listStatus = builder.listStatus; this.name = builder.name; this.size = builder.size; this.tags = builder.tags; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static PopListCommonMaterialsAllRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return name */ public String getName() { return this.name; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return tags */ public String getTags() { return this.tags; } /** * @return type */ public String getType() { return this.type; } public static final class Builder extends Request.Builder<PopListCommonMaterialsAllRequest, Builder> { private Integer current; private String jwtToken; private String listStatus; private String name; private Integer size; private String tags; private String type; private Builder() { super(); } private Builder(PopListCommonMaterialsAllRequest request) { super(request); this.current = request.current; this.jwtToken = request.jwtToken; this.listStatus = request.listStatus; this.name = request.name; this.size = request.size; this.tags = request.tags; this.type = request.type; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.putQueryParameter("ListStatus", listStatus); this.listStatus = listStatus; return this; } /** * Name. */ public Builder name(String name) { this.putQueryParameter("Name", name); this.name = name; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * Tags. */ public Builder tags(String tags) { this.putQueryParameter("Tags", tags); this.tags = tags; return this; } /** * Type. */ public Builder type(String type) { this.putQueryParameter("Type", type); this.type = type; return this; } @Override public PopListCommonMaterialsAllRequest build() { return new PopListCommonMaterialsAllRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListCommonMaterialsAllResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListCommonMaterialsAllResponse} extends {@link TeaModel} * * <p>PopListCommonMaterialsAllResponse</p> */ public class PopListCommonMaterialsAllResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListCommonMaterialsAllResponseBody body; private PopListCommonMaterialsAllResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListCommonMaterialsAllResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListCommonMaterialsAllResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListCommonMaterialsAllResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListCommonMaterialsAllResponseBody body); @Override PopListCommonMaterialsAllResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListCommonMaterialsAllResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListCommonMaterialsAllResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListCommonMaterialsAllResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListCommonMaterialsAllResponseBody body) { this.body = body; return this; } @Override public PopListCommonMaterialsAllResponse build() { return new PopListCommonMaterialsAllResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListCommonMaterialsAllResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListCommonMaterialsAllResponseBody} extends {@link TeaModel} * * <p>PopListCommonMaterialsAllResponseBody</p> */ public class PopListCommonMaterialsAllResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopListCommonMaterialsAllResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopListCommonMaterialsAllResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private java.util.List < Data> data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopListCommonMaterialsAllResponseBody build() { return new PopListCommonMaterialsAllResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Type") private String type; private Data(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.previewUrl = builder.previewUrl; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private String createTime; private Boolean deleted; private String ext; private String fileUrl; private String id; private String intro; private String listStatus; private String modifiedTime; private String name; private String ossKey; private String previewUrl; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarMaterialsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarMaterialsRequest} extends {@link RequestModel} * * <p>PopListFeatureToAvatarMaterialsRequest</p> */ public class PopListFeatureToAvatarMaterialsRequest extends Request { @Body @NameInMap("Current") private Integer current; @Body @NameInMap("ListStatus") private String listStatus; @Body @NameInMap("Size") private Integer size; @Body @NameInMap("Tags") private String tags; private PopListFeatureToAvatarMaterialsRequest(Builder builder) { super(builder); this.current = builder.current; this.listStatus = builder.listStatus; this.size = builder.size; this.tags = builder.tags; } public static Builder builder() { return new Builder(); } public static PopListFeatureToAvatarMaterialsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return tags */ public String getTags() { return this.tags; } public static final class Builder extends Request.Builder<PopListFeatureToAvatarMaterialsRequest, Builder> { private Integer current; private String listStatus; private Integer size; private String tags; private Builder() { super(); } private Builder(PopListFeatureToAvatarMaterialsRequest request) { super(request); this.current = request.current; this.listStatus = request.listStatus; this.size = request.size; this.tags = request.tags; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.putBodyParameter("ListStatus", listStatus); this.listStatus = listStatus; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * Tags. */ public Builder tags(String tags) { this.putBodyParameter("Tags", tags); this.tags = tags; return this; } @Override public PopListFeatureToAvatarMaterialsRequest build() { return new PopListFeatureToAvatarMaterialsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarMaterialsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarMaterialsResponse} extends {@link TeaModel} * * <p>PopListFeatureToAvatarMaterialsResponse</p> */ public class PopListFeatureToAvatarMaterialsResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListFeatureToAvatarMaterialsResponseBody body; private PopListFeatureToAvatarMaterialsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListFeatureToAvatarMaterialsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListFeatureToAvatarMaterialsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListFeatureToAvatarMaterialsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListFeatureToAvatarMaterialsResponseBody body); @Override PopListFeatureToAvatarMaterialsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListFeatureToAvatarMaterialsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListFeatureToAvatarMaterialsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListFeatureToAvatarMaterialsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListFeatureToAvatarMaterialsResponseBody body) { this.body = body; return this; } @Override public PopListFeatureToAvatarMaterialsResponse build() { return new PopListFeatureToAvatarMaterialsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarMaterialsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarMaterialsResponseBody} extends {@link TeaModel} * * <p>PopListFeatureToAvatarMaterialsResponseBody</p> */ public class PopListFeatureToAvatarMaterialsResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListFeatureToAvatarMaterialsResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListFeatureToAvatarMaterialsResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListFeatureToAvatarMaterialsResponseBody build() { return new PopListFeatureToAvatarMaterialsResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CheckStatus") private String checkStatus; @NameInMap("Common") private Boolean common; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ListStatus") private String listStatus; @NameInMap("Name") private String name; @NameInMap("Type") private String type; private Data(Builder builder) { this.checkStatus = builder.checkStatus; this.common = builder.common; this.coverUrl = builder.coverUrl; this.deleted = builder.deleted; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.listStatus = builder.listStatus; this.name = builder.name; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return common */ public Boolean getCommon() { return this.common; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String checkStatus; private Boolean common; private String coverUrl; private Boolean deleted; private String ext; private String fileUrl; private String id; private String intro; private String listStatus; private String name; private String type; /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Common. */ public Builder common(Boolean common) { this.common = common; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.listStatus = listStatus; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarProjectRequest} extends {@link RequestModel} * * <p>PopListFeatureToAvatarProjectRequest</p> */ public class PopListFeatureToAvatarProjectRequest extends Request { @Body @NameInMap("Current") private Integer current; @Body @NameInMap("Size") private Integer size; @Body @NameInMap("SortField") private String sortField; @Body @NameInMap("Status") private String status; @Body @NameInMap("Title") private String title; private PopListFeatureToAvatarProjectRequest(Builder builder) { super(builder); this.current = builder.current; this.size = builder.size; this.sortField = builder.sortField; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopListFeatureToAvatarProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return sortField */ public String getSortField() { return this.sortField; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopListFeatureToAvatarProjectRequest, Builder> { private Integer current; private Integer size; private String sortField; private String status; private String title; private Builder() { super(); } private Builder(PopListFeatureToAvatarProjectRequest request) { super(request); this.current = request.current; this.size = request.size; this.sortField = request.sortField; this.status = request.status; this.title = request.title; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * SortField. */ public Builder sortField(String sortField) { this.putBodyParameter("SortField", sortField); this.sortField = sortField; return this; } /** * Status. */ public Builder status(String status) { this.putBodyParameter("Status", status); this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopListFeatureToAvatarProjectRequest build() { return new PopListFeatureToAvatarProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarProjectResponse} extends {@link TeaModel} * * <p>PopListFeatureToAvatarProjectResponse</p> */ public class PopListFeatureToAvatarProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListFeatureToAvatarProjectResponseBody body; private PopListFeatureToAvatarProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListFeatureToAvatarProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListFeatureToAvatarProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListFeatureToAvatarProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListFeatureToAvatarProjectResponseBody body); @Override PopListFeatureToAvatarProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListFeatureToAvatarProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListFeatureToAvatarProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListFeatureToAvatarProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListFeatureToAvatarProjectResponseBody body) { this.body = body; return this; } @Override public PopListFeatureToAvatarProjectResponse build() { return new PopListFeatureToAvatarProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListFeatureToAvatarProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListFeatureToAvatarProjectResponseBody} extends {@link TeaModel} * * <p>PopListFeatureToAvatarProjectResponseBody</p> */ public class PopListFeatureToAvatarProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListFeatureToAvatarProjectResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListFeatureToAvatarProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListFeatureToAvatarProjectResponseBody build() { return new PopListFeatureToAvatarProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.dataset = builder.dataset; this.deleted = builder.deleted; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private Dataset dataset; private Boolean deleted; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListLivePortraitModelScopeMaterialsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListLivePortraitModelScopeMaterialsRequest} extends {@link RequestModel} * * <p>PopListLivePortraitModelScopeMaterialsRequest</p> */ public class PopListLivePortraitModelScopeMaterialsRequest extends Request { @Body @NameInMap("Current") private Integer current; @Body @NameInMap("Size") private Integer size; @Body @NameInMap("Types") private String types; private PopListLivePortraitModelScopeMaterialsRequest(Builder builder) { super(builder); this.current = builder.current; this.size = builder.size; this.types = builder.types; } public static Builder builder() { return new Builder(); } public static PopListLivePortraitModelScopeMaterialsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return types */ public String getTypes() { return this.types; } public static final class Builder extends Request.Builder<PopListLivePortraitModelScopeMaterialsRequest, Builder> { private Integer current; private Integer size; private String types; private Builder() { super(); } private Builder(PopListLivePortraitModelScopeMaterialsRequest request) { super(request); this.current = request.current; this.size = request.size; this.types = request.types; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * Types. */ public Builder types(String types) { this.putBodyParameter("Types", types); this.types = types; return this; } @Override public PopListLivePortraitModelScopeMaterialsRequest build() { return new PopListLivePortraitModelScopeMaterialsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListLivePortraitModelScopeMaterialsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListLivePortraitModelScopeMaterialsResponse} extends {@link TeaModel} * * <p>PopListLivePortraitModelScopeMaterialsResponse</p> */ public class PopListLivePortraitModelScopeMaterialsResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListLivePortraitModelScopeMaterialsResponseBody body; private PopListLivePortraitModelScopeMaterialsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListLivePortraitModelScopeMaterialsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListLivePortraitModelScopeMaterialsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListLivePortraitModelScopeMaterialsResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListLivePortraitModelScopeMaterialsResponseBody body); @Override PopListLivePortraitModelScopeMaterialsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListLivePortraitModelScopeMaterialsResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListLivePortraitModelScopeMaterialsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListLivePortraitModelScopeMaterialsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListLivePortraitModelScopeMaterialsResponseBody body) { this.body = body; return this; } @Override public PopListLivePortraitModelScopeMaterialsResponse build() { return new PopListLivePortraitModelScopeMaterialsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListLivePortraitModelScopeMaterialsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListLivePortraitModelScopeMaterialsResponseBody} extends {@link TeaModel} * * <p>PopListLivePortraitModelScopeMaterialsResponseBody</p> */ public class PopListLivePortraitModelScopeMaterialsResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListLivePortraitModelScopeMaterialsResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListLivePortraitModelScopeMaterialsResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListLivePortraitModelScopeMaterialsResponseBody build() { return new PopListLivePortraitModelScopeMaterialsResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("Name") private String name; @NameInMap("Type") private String type; private Data(Builder builder) { this.coverUrl = builder.coverUrl; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.name = builder.name; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return name */ public String getName() { return this.name; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String coverUrl; private String ext; private String fileUrl; private String id; private String intro; private String name; private String type; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectCaseRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectCaseRequest} extends {@link RequestModel} * * <p>PopListObjectCaseRequest</p> */ public class PopListObjectCaseRequest extends Request { @Body @NameInMap("Current") private Integer current; @Body @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Size") private Integer size; private PopListObjectCaseRequest(Builder builder) { super(builder); this.current = builder.current; this.jwtToken = builder.jwtToken; this.size = builder.size; } public static Builder builder() { return new Builder(); } public static PopListObjectCaseRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return size */ public Integer getSize() { return this.size; } public static final class Builder extends Request.Builder<PopListObjectCaseRequest, Builder> { private Integer current; private String jwtToken; private Integer size; private Builder() { super(); } private Builder(PopListObjectCaseRequest request) { super(request); this.current = request.current; this.jwtToken = request.jwtToken; this.size = request.size; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putBodyParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } @Override public PopListObjectCaseRequest build() { return new PopListObjectCaseRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectCaseResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectCaseResponse} extends {@link TeaModel} * * <p>PopListObjectCaseResponse</p> */ public class PopListObjectCaseResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListObjectCaseResponseBody body; private PopListObjectCaseResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListObjectCaseResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListObjectCaseResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListObjectCaseResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListObjectCaseResponseBody body); @Override PopListObjectCaseResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListObjectCaseResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListObjectCaseResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListObjectCaseResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListObjectCaseResponseBody body) { this.body = body; return this; } @Override public PopListObjectCaseResponse build() { return new PopListObjectCaseResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectCaseResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectCaseResponseBody} extends {@link TeaModel} * * <p>PopListObjectCaseResponseBody</p> */ public class PopListObjectCaseResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("ErrorName") private String errorName; @NameInMap("HttpCode") private Integer httpCode; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListObjectCaseResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.errorName = builder.errorName; this.httpCode = builder.httpCode; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListObjectCaseResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return errorName */ public String getErrorName() { return this.errorName; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String errorName; private Integer httpCode; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * ErrorName. */ public Builder errorName(String errorName) { this.errorName = errorName; return this; } /** * HttpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListObjectCaseResponseBody build() { return new PopListObjectCaseResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String modifiedTime; private String name; private String ossKey; private String type; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } public Source build() { return new Source(this); } } } public static class Data extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String modifiedTime; private Source source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectGenerationProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectGenerationProjectRequest} extends {@link RequestModel} * * <p>PopListObjectGenerationProjectRequest</p> */ public class PopListObjectGenerationProjectRequest extends Request { @Body @NameInMap("Current") private Integer current; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Size") private Integer size; private PopListObjectGenerationProjectRequest(Builder builder) { super(builder); this.current = builder.current; this.jwtToken = builder.jwtToken; this.size = builder.size; } public static Builder builder() { return new Builder(); } public static PopListObjectGenerationProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return size */ public Integer getSize() { return this.size; } public static final class Builder extends Request.Builder<PopListObjectGenerationProjectRequest, Builder> { private Integer current; private String jwtToken; private Integer size; private Builder() { super(); } private Builder(PopListObjectGenerationProjectRequest request) { super(request); this.current = request.current; this.jwtToken = request.jwtToken; this.size = request.size; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } @Override public PopListObjectGenerationProjectRequest build() { return new PopListObjectGenerationProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectGenerationProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectGenerationProjectResponse} extends {@link TeaModel} * * <p>PopListObjectGenerationProjectResponse</p> */ public class PopListObjectGenerationProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListObjectGenerationProjectResponseBody body; private PopListObjectGenerationProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListObjectGenerationProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListObjectGenerationProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListObjectGenerationProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListObjectGenerationProjectResponseBody body); @Override PopListObjectGenerationProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListObjectGenerationProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListObjectGenerationProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListObjectGenerationProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListObjectGenerationProjectResponseBody body) { this.body = body; return this; } @Override public PopListObjectGenerationProjectResponse build() { return new PopListObjectGenerationProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectGenerationProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectGenerationProjectResponseBody} extends {@link TeaModel} * * <p>PopListObjectGenerationProjectResponseBody</p> */ public class PopListObjectGenerationProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListObjectGenerationProjectResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListObjectGenerationProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListObjectGenerationProjectResponseBody build() { return new PopListObjectGenerationProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String errorMessage; private Long estimatedDuration; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("Status") private String status; @NameInMap("Title") private String title; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.dataset = builder.dataset; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String bizUsage; private BuildDetail buildDetail; private Dataset dataset; private String ext; private String id; private String intro; private String status; private String title; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectProjectRequest} extends {@link RequestModel} * * <p>PopListObjectProjectRequest</p> */ public class PopListObjectProjectRequest extends Request { @Body @NameInMap("AuditStatus") private String auditStatus; @Body @NameInMap("Current") private Integer current; @Body @NameInMap("CustomSource") private String customSource; @Body @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Size") private Integer size; @Body @NameInMap("SortField") private String sortField; @Body @NameInMap("Status") private String status; @Body @NameInMap("Title") private String title; @Body @NameInMap("WithSource") private Boolean withSource; private PopListObjectProjectRequest(Builder builder) { super(builder); this.auditStatus = builder.auditStatus; this.current = builder.current; this.customSource = builder.customSource; this.jwtToken = builder.jwtToken; this.size = builder.size; this.sortField = builder.sortField; this.status = builder.status; this.title = builder.title; this.withSource = builder.withSource; } public static Builder builder() { return new Builder(); } public static PopListObjectProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return sortField */ public String getSortField() { return this.sortField; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return withSource */ public Boolean getWithSource() { return this.withSource; } public static final class Builder extends Request.Builder<PopListObjectProjectRequest, Builder> { private String auditStatus; private Integer current; private String customSource; private String jwtToken; private Integer size; private String sortField; private String status; private String title; private Boolean withSource; private Builder() { super(); } private Builder(PopListObjectProjectRequest request) { super(request); this.auditStatus = request.auditStatus; this.current = request.current; this.customSource = request.customSource; this.jwtToken = request.jwtToken; this.size = request.size; this.sortField = request.sortField; this.status = request.status; this.title = request.title; this.withSource = request.withSource; } /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.putBodyParameter("AuditStatus", auditStatus); this.auditStatus = auditStatus; return this; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.putBodyParameter("CustomSource", customSource); this.customSource = customSource; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putBodyParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * SortField. */ public Builder sortField(String sortField) { this.putBodyParameter("SortField", sortField); this.sortField = sortField; return this; } /** * Status. */ public Builder status(String status) { this.putBodyParameter("Status", status); this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } /** * WithSource. */ public Builder withSource(Boolean withSource) { this.putBodyParameter("WithSource", withSource); this.withSource = withSource; return this; } @Override public PopListObjectProjectRequest build() { return new PopListObjectProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectProjectResponse} extends {@link TeaModel} * * <p>PopListObjectProjectResponse</p> */ public class PopListObjectProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListObjectProjectResponseBody body; private PopListObjectProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListObjectProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListObjectProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListObjectProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListObjectProjectResponseBody body); @Override PopListObjectProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListObjectProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListObjectProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListObjectProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListObjectProjectResponseBody body) { this.body = body; return this; } @Override public PopListObjectProjectResponse build() { return new PopListObjectProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListObjectProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListObjectProjectResponseBody} extends {@link TeaModel} * * <p>PopListObjectProjectResponseBody</p> */ public class PopListObjectProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("ErrorName") private String errorName; @NameInMap("HttpCode") private Integer httpCode; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListObjectProjectResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.errorName = builder.errorName; this.httpCode = builder.httpCode; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListObjectProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return errorName */ public String getErrorName() { return this.errorName; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String errorName; private Integer httpCode; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * ErrorName. */ public Builder errorName(String errorName) { this.errorName = errorName; return this; } /** * HttpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListObjectProjectResponseBody build() { return new PopListObjectProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String modifiedTime; private String name; private String ossKey; private String type; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } public Source build() { return new Source(this); } } } public static class Data extends TeaModel { @NameInMap("AuditStatus") private String auditStatus; @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("CustomSource") private String customSource; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.auditStatus = builder.auditStatus; this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.customSource = builder.customSource; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return auditStatus */ public String getAuditStatus() { return this.auditStatus; } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return customSource */ public String getCustomSource() { return this.customSource; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String auditStatus; private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private String customSource; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String modifiedTime; private Source source; private String status; private String title; private String type; /** * AuditStatus. */ public Builder auditStatus(String auditStatus) { this.auditStatus = auditStatus; return this; } /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * CustomSource. */ public Builder customSource(String customSource) { this.customSource = customSource; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListPakRenderExpressionRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListPakRenderExpressionRequest} extends {@link RequestModel} * * <p>PopListPakRenderExpressionRequest</p> */ public class PopListPakRenderExpressionRequest extends Request { @Body @NameInMap("Current") private Integer current; @Query @NameInMap("ListStatus") private String listStatus; @Body @NameInMap("Size") private Integer size; private PopListPakRenderExpressionRequest(Builder builder) { super(builder); this.current = builder.current; this.listStatus = builder.listStatus; this.size = builder.size; } public static Builder builder() { return new Builder(); } public static PopListPakRenderExpressionRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return listStatus */ public String getListStatus() { return this.listStatus; } /** * @return size */ public Integer getSize() { return this.size; } public static final class Builder extends Request.Builder<PopListPakRenderExpressionRequest, Builder> { private Integer current; private String listStatus; private Integer size; private Builder() { super(); } private Builder(PopListPakRenderExpressionRequest request) { super(request); this.current = request.current; this.listStatus = request.listStatus; this.size = request.size; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * ListStatus. */ public Builder listStatus(String listStatus) { this.putQueryParameter("ListStatus", listStatus); this.listStatus = listStatus; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } @Override public PopListPakRenderExpressionRequest build() { return new PopListPakRenderExpressionRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListPakRenderExpressionResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListPakRenderExpressionResponse} extends {@link TeaModel} * * <p>PopListPakRenderExpressionResponse</p> */ public class PopListPakRenderExpressionResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListPakRenderExpressionResponseBody body; private PopListPakRenderExpressionResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListPakRenderExpressionResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListPakRenderExpressionResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListPakRenderExpressionResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListPakRenderExpressionResponseBody body); @Override PopListPakRenderExpressionResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListPakRenderExpressionResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListPakRenderExpressionResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListPakRenderExpressionResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListPakRenderExpressionResponseBody body) { this.body = body; return this; } @Override public PopListPakRenderExpressionResponse build() { return new PopListPakRenderExpressionResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListPakRenderExpressionResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListPakRenderExpressionResponseBody} extends {@link TeaModel} * * <p>PopListPakRenderExpressionResponseBody</p> */ public class PopListPakRenderExpressionResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListPakRenderExpressionResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListPakRenderExpressionResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListPakRenderExpressionResponseBody build() { return new PopListPakRenderExpressionResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("Ext") private String ext; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("Name") private String name; private Data(Builder builder) { this.coverUrl = builder.coverUrl; this.ext = builder.ext; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String coverUrl; private String ext; private String fileUrl; private String id; private String intro; private String name; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListTextToAvatarProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListTextToAvatarProjectRequest} extends {@link RequestModel} * * <p>PopListTextToAvatarProjectRequest</p> */ public class PopListTextToAvatarProjectRequest extends Request { @Body @NameInMap("Current") private Integer current; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("Size") private Integer size; @Body @NameInMap("SortField") private String sortField; @Body @NameInMap("Status") private String status; @Body @NameInMap("Title") private String title; private PopListTextToAvatarProjectRequest(Builder builder) { super(builder); this.current = builder.current; this.jwtToken = builder.jwtToken; this.size = builder.size; this.sortField = builder.sortField; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static PopListTextToAvatarProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return sortField */ public String getSortField() { return this.sortField; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder extends Request.Builder<PopListTextToAvatarProjectRequest, Builder> { private Integer current; private String jwtToken; private Integer size; private String sortField; private String status; private String title; private Builder() { super(); } private Builder(PopListTextToAvatarProjectRequest request) { super(request); this.current = request.current; this.jwtToken = request.jwtToken; this.size = request.size; this.sortField = request.sortField; this.status = request.status; this.title = request.title; } /** * Current. */ public Builder current(Integer current) { this.putBodyParameter("Current", current); this.current = current; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * Size. */ public Builder size(Integer size) { this.putBodyParameter("Size", size); this.size = size; return this; } /** * SortField. */ public Builder sortField(String sortField) { this.putBodyParameter("SortField", sortField); this.sortField = sortField; return this; } /** * Status. */ public Builder status(String status) { this.putBodyParameter("Status", status); this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.putBodyParameter("Title", title); this.title = title; return this; } @Override public PopListTextToAvatarProjectRequest build() { return new PopListTextToAvatarProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListTextToAvatarProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListTextToAvatarProjectResponse} extends {@link TeaModel} * * <p>PopListTextToAvatarProjectResponse</p> */ public class PopListTextToAvatarProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopListTextToAvatarProjectResponseBody body; private PopListTextToAvatarProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopListTextToAvatarProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopListTextToAvatarProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopListTextToAvatarProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopListTextToAvatarProjectResponseBody body); @Override PopListTextToAvatarProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopListTextToAvatarProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopListTextToAvatarProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopListTextToAvatarProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopListTextToAvatarProjectResponseBody body) { this.body = body; return this; } @Override public PopListTextToAvatarProjectResponse build() { return new PopListTextToAvatarProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopListTextToAvatarProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopListTextToAvatarProjectResponseBody} extends {@link TeaModel} * * <p>PopListTextToAvatarProjectResponseBody</p> */ public class PopListTextToAvatarProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Current") private Integer current; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("Pages") private Integer pages; @NameInMap("RequestId") private String requestId; @NameInMap("Size") private Integer size; @NameInMap("Success") private Boolean success; @NameInMap("Total") private Integer total; private PopListTextToAvatarProjectResponseBody(Builder builder) { this.code = builder.code; this.current = builder.current; this.data = builder.data; this.message = builder.message; this.pages = builder.pages; this.requestId = builder.requestId; this.size = builder.size; this.success = builder.success; this.total = builder.total; } public static Builder builder() { return new Builder(); } public static PopListTextToAvatarProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return current */ public Integer getCurrent() { return this.current; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return pages */ public Integer getPages() { return this.pages; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return size */ public Integer getSize() { return this.size; } /** * @return success */ public Boolean getSuccess() { return this.success; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private String code; private Integer current; private java.util.List < Data> data; private String message; private Integer pages; private String requestId; private Integer size; private Boolean success; private Integer total; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Current. */ public Builder current(Integer current) { this.current = current; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * Pages. */ public Builder pages(Integer pages) { this.pages = pages; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Size. */ public Builder size(Integer size) { this.size = size; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } /** * Total. */ public Builder total(Integer total) { this.total = total; return this; } public PopListTextToAvatarProjectResponseBody build() { return new PopListTextToAvatarProjectResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String modifiedTime; private String ossKey; private Policy policy; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectProjectDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectProjectDetailRequest} extends {@link RequestModel} * * <p>PopObjectProjectDetailRequest</p> */ public class PopObjectProjectDetailRequest extends Request { @Body @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopObjectProjectDetailRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopObjectProjectDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopObjectProjectDetailRequest, Builder> { private String jwtToken; private String projectId; private Builder() { super(); } private Builder(PopObjectProjectDetailRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putBodyParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopObjectProjectDetailRequest build() { return new PopObjectProjectDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectProjectDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectProjectDetailResponse} extends {@link TeaModel} * * <p>PopObjectProjectDetailResponse</p> */ public class PopObjectProjectDetailResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopObjectProjectDetailResponseBody body; private PopObjectProjectDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopObjectProjectDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopObjectProjectDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopObjectProjectDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopObjectProjectDetailResponseBody body); @Override PopObjectProjectDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopObjectProjectDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopObjectProjectDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopObjectProjectDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopObjectProjectDetailResponseBody body) { this.body = body; return this; } @Override public PopObjectProjectDetailResponse build() { return new PopObjectProjectDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectProjectDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectProjectDetailResponseBody} extends {@link TeaModel} * * <p>PopObjectProjectDetailResponseBody</p> */ public class PopObjectProjectDetailResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("ErrorName") private String errorName; @NameInMap("HttpCode") private Integer httpCode; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopObjectProjectDetailResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.errorName = builder.errorName; this.httpCode = builder.httpCode; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopObjectProjectDetailResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return errorName */ public String getErrorName() { return this.errorName; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String errorName; private Integer httpCode; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * ErrorName. */ public Builder errorName(String errorName) { this.errorName = errorName; return this; } /** * HttpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopObjectProjectDetailResponseBody build() { return new PopObjectProjectDetailResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.policy = builder.policy; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private Policy policy; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Clothes extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Name") private String name; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; private Clothes(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.name = builder.name; this.ossKey = builder.ossKey; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Clothes create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return name */ public String getName() { return this.name; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String modifiedTime; private String name; private String ossKey; private String type; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Clothes build() { return new Clothes(this); } } } public static class SourcePolicy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private SourcePolicy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static SourcePolicy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public SourcePolicy build() { return new SourcePolicy(this); } } } public static class SourceFiles extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("FileName") private String fileName; @NameInMap("Filesize") private Long filesize; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Type") private String type; @NameInMap("Url") private String url; private SourceFiles(Builder builder) { this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.fileName = builder.fileName; this.filesize = builder.filesize; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.type = builder.type; this.url = builder.url; } public static Builder builder() { return new Builder(); } public static SourceFiles create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return fileName */ public String getFileName() { return this.fileName; } /** * @return filesize */ public Long getFilesize() { return this.filesize; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return type */ public String getType() { return this.type; } /** * @return url */ public String getUrl() { return this.url; } public static final class Builder { private String coverUrl; private String createTime; private Boolean deleted; private String fileName; private Long filesize; private String modifiedTime; private String ossKey; private String type; private String url; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * FileName. */ public Builder fileName(String fileName) { this.fileName = fileName; return this; } /** * Filesize. */ public Builder filesize(Long filesize) { this.filesize = filesize; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * Url. */ public Builder url(String url) { this.url = url; return this; } public SourceFiles build() { return new SourceFiles(this); } } } public static class Source extends TeaModel { @NameInMap("Clothes") private java.util.List < Clothes> clothes; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private SourcePolicy policy; @NameInMap("SourceFiles") private java.util.List < SourceFiles> sourceFiles; private Source(Builder builder) { this.clothes = builder.clothes; this.createTime = builder.createTime; this.deleted = builder.deleted; this.modifiedTime = builder.modifiedTime; this.ossKey = builder.ossKey; this.policy = builder.policy; this.sourceFiles = builder.sourceFiles; } public static Builder builder() { return new Builder(); } public static Source create() { return builder().build(); } /** * @return clothes */ public java.util.List < Clothes> getClothes() { return this.clothes; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public SourcePolicy getPolicy() { return this.policy; } /** * @return sourceFiles */ public java.util.List < SourceFiles> getSourceFiles() { return this.sourceFiles; } public static final class Builder { private java.util.List < Clothes> clothes; private String createTime; private Boolean deleted; private String modifiedTime; private String ossKey; private SourcePolicy policy; private java.util.List < SourceFiles> sourceFiles; /** * Clothes. */ public Builder clothes(java.util.List < Clothes> clothes) { this.clothes = clothes; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(SourcePolicy policy) { this.policy = policy; return this; } /** * SourceFiles. */ public Builder sourceFiles(java.util.List < SourceFiles> sourceFiles) { this.sourceFiles = sourceFiles; return this; } public Source build() { return new Source(this); } } } public static class Data extends TeaModel { @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Source") private Source source; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.modifiedTime = builder.modifiedTime; this.source = builder.source; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return source */ public Source getSource() { return this.source; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String modifiedTime; private Source source; private String status; private String title; private String type; /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Source. */ public Builder source(Source source) { this.source = source; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalRequest} extends {@link RequestModel} * * <p>PopObjectRetrievalRequest</p> */ public class PopObjectRetrievalRequest extends Request { @Body @NameInMap("Content") private String content; @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("SourceType") private String sourceType; @Body @NameInMap("TopK") private Integer topK; private PopObjectRetrievalRequest(Builder builder) { super(builder); this.content = builder.content; this.jwtToken = builder.jwtToken; this.sourceType = builder.sourceType; this.topK = builder.topK; } public static Builder builder() { return new Builder(); } public static PopObjectRetrievalRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return content */ public String getContent() { return this.content; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } /** * @return topK */ public Integer getTopK() { return this.topK; } public static final class Builder extends Request.Builder<PopObjectRetrievalRequest, Builder> { private String content; private String jwtToken; private String sourceType; private Integer topK; private Builder() { super(); } private Builder(PopObjectRetrievalRequest request) { super(request); this.content = request.content; this.jwtToken = request.jwtToken; this.sourceType = request.sourceType; this.topK = request.topK; } /** * Content. */ public Builder content(String content) { this.putBodyParameter("Content", content); this.content = content; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * SourceType. */ public Builder sourceType(String sourceType) { this.putBodyParameter("SourceType", sourceType); this.sourceType = sourceType; return this; } /** * TopK. */ public Builder topK(Integer topK) { this.putBodyParameter("TopK", topK); this.topK = topK; return this; } @Override public PopObjectRetrievalRequest build() { return new PopObjectRetrievalRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalResponse} extends {@link TeaModel} * * <p>PopObjectRetrievalResponse</p> */ public class PopObjectRetrievalResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopObjectRetrievalResponseBody body; private PopObjectRetrievalResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopObjectRetrievalResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopObjectRetrievalResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopObjectRetrievalResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopObjectRetrievalResponseBody body); @Override PopObjectRetrievalResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopObjectRetrievalResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopObjectRetrievalResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopObjectRetrievalResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopObjectRetrievalResponseBody body) { this.body = body; return this; } @Override public PopObjectRetrievalResponse build() { return new PopObjectRetrievalResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalResponseBody} extends {@link TeaModel} * * <p>PopObjectRetrievalResponseBody</p> */ public class PopObjectRetrievalResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopObjectRetrievalResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopObjectRetrievalResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private java.util.List < Data> data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopObjectRetrievalResponseBody build() { return new PopObjectRetrievalResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("CoverUrl") private String coverUrl; @NameInMap("GlbUrl") private String glbUrl; @NameInMap("Id") private String id; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("PreviewUrl") private String previewUrl; @NameInMap("Title") private String title; private Data(Builder builder) { this.coverUrl = builder.coverUrl; this.glbUrl = builder.glbUrl; this.id = builder.id; this.modelUrl = builder.modelUrl; this.previewUrl = builder.previewUrl; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return glbUrl */ public String getGlbUrl() { return this.glbUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String coverUrl; private String glbUrl; private String id; private String modelUrl; private String previewUrl; private String title; /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * GlbUrl. */ public Builder glbUrl(String glbUrl) { this.glbUrl = glbUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalUploadDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalUploadDataRequest} extends {@link RequestModel} * * <p>PopObjectRetrievalUploadDataRequest</p> */ public class PopObjectRetrievalUploadDataRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; private PopObjectRetrievalUploadDataRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static PopObjectRetrievalUploadDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<PopObjectRetrievalUploadDataRequest, Builder> { private String jwtToken; private Builder() { super(); } private Builder(PopObjectRetrievalUploadDataRequest request) { super(request); this.jwtToken = request.jwtToken; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public PopObjectRetrievalUploadDataRequest build() { return new PopObjectRetrievalUploadDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalUploadDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalUploadDataResponse} extends {@link TeaModel} * * <p>PopObjectRetrievalUploadDataResponse</p> */ public class PopObjectRetrievalUploadDataResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopObjectRetrievalUploadDataResponseBody body; private PopObjectRetrievalUploadDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopObjectRetrievalUploadDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopObjectRetrievalUploadDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopObjectRetrievalUploadDataResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopObjectRetrievalUploadDataResponseBody body); @Override PopObjectRetrievalUploadDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopObjectRetrievalUploadDataResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopObjectRetrievalUploadDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopObjectRetrievalUploadDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopObjectRetrievalUploadDataResponseBody body) { this.body = body; return this; } @Override public PopObjectRetrievalUploadDataResponse build() { return new PopObjectRetrievalUploadDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopObjectRetrievalUploadDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopObjectRetrievalUploadDataResponseBody} extends {@link TeaModel} * * <p>PopObjectRetrievalUploadDataResponseBody</p> */ public class PopObjectRetrievalUploadDataResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopObjectRetrievalUploadDataResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopObjectRetrievalUploadDataResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopObjectRetrievalUploadDataResponseBody build() { return new PopObjectRetrievalUploadDataResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Data(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryAvatarProjectDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryAvatarProjectDetailRequest} extends {@link RequestModel} * * <p>PopQueryAvatarProjectDetailRequest</p> */ public class PopQueryAvatarProjectDetailRequest extends Request { @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopQueryAvatarProjectDetailRequest(Builder builder) { super(builder); this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopQueryAvatarProjectDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopQueryAvatarProjectDetailRequest, Builder> { private String projectId; private Builder() { super(); } private Builder(PopQueryAvatarProjectDetailRequest request) { super(request); this.projectId = request.projectId; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopQueryAvatarProjectDetailRequest build() { return new PopQueryAvatarProjectDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryAvatarProjectDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryAvatarProjectDetailResponse} extends {@link TeaModel} * * <p>PopQueryAvatarProjectDetailResponse</p> */ public class PopQueryAvatarProjectDetailResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopQueryAvatarProjectDetailResponseBody body; private PopQueryAvatarProjectDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopQueryAvatarProjectDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopQueryAvatarProjectDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopQueryAvatarProjectDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopQueryAvatarProjectDetailResponseBody body); @Override PopQueryAvatarProjectDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopQueryAvatarProjectDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopQueryAvatarProjectDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopQueryAvatarProjectDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopQueryAvatarProjectDetailResponseBody body) { this.body = body; return this; } @Override public PopQueryAvatarProjectDetailResponse build() { return new PopQueryAvatarProjectDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryAvatarProjectDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryAvatarProjectDetailResponseBody} extends {@link TeaModel} * * <p>PopQueryAvatarProjectDetailResponseBody</p> */ public class PopQueryAvatarProjectDetailResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopQueryAvatarProjectDetailResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopQueryAvatarProjectDetailResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopQueryAvatarProjectDetailResponseBody build() { return new PopQueryAvatarProjectDetailResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.modifiedTime = builder.modifiedTime; this.runningTime = builder.runningTime; this.status = builder.status; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String createTime; private Boolean deleted; private String errorMessage; private Long estimatedDuration; private String modifiedTime; private String runningTime; private String status; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("CoverUrl") private String coverUrl; @NameInMap("CreateTime") private String createTime; @NameInMap("Deleted") private Boolean deleted; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("GlbModelUrl") private String glbModelUrl; @NameInMap("ModelUrl") private String modelUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("OriginResultUrl") private String originResultUrl; @NameInMap("OssKey") private String ossKey; @NameInMap("PoseUrl") private String poseUrl; @NameInMap("PreviewUrl") private String previewUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.coverUrl = builder.coverUrl; this.createTime = builder.createTime; this.deleted = builder.deleted; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.glbModelUrl = builder.glbModelUrl; this.modelUrl = builder.modelUrl; this.modifiedTime = builder.modifiedTime; this.originResultUrl = builder.originResultUrl; this.ossKey = builder.ossKey; this.poseUrl = builder.poseUrl; this.previewUrl = builder.previewUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return coverUrl */ public String getCoverUrl() { return this.coverUrl; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return glbModelUrl */ public String getGlbModelUrl() { return this.glbModelUrl; } /** * @return modelUrl */ public String getModelUrl() { return this.modelUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return originResultUrl */ public String getOriginResultUrl() { return this.originResultUrl; } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return poseUrl */ public String getPoseUrl() { return this.poseUrl; } /** * @return previewUrl */ public String getPreviewUrl() { return this.previewUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String coverUrl; private String createTime; private Boolean deleted; private String errorCode; private String errorMessage; private String glbModelUrl; private String modelUrl; private String modifiedTime; private String originResultUrl; private String ossKey; private String poseUrl; private String previewUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * CoverUrl. */ public Builder coverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * GlbModelUrl. */ public Builder glbModelUrl(String glbModelUrl) { this.glbModelUrl = glbModelUrl; return this; } /** * ModelUrl. */ public Builder modelUrl(String modelUrl) { this.modelUrl = modelUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * OriginResultUrl. */ public Builder originResultUrl(String originResultUrl) { this.originResultUrl = originResultUrl; return this; } /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * PoseUrl. */ public Builder poseUrl(String poseUrl) { this.poseUrl = poseUrl; return this; } /** * PreviewUrl. */ public Builder previewUrl(String previewUrl) { this.previewUrl = previewUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("AutoBuild") private Boolean autoBuild; @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CheckStatus") private String checkStatus; @NameInMap("CreateMode") private String createMode; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Deleted") private Boolean deleted; @NameInMap("Dependencies") private String dependencies; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("ModifiedTime") private String modifiedTime; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.autoBuild = builder.autoBuild; this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.checkStatus = builder.checkStatus; this.createMode = builder.createMode; this.createTime = builder.createTime; this.dataset = builder.dataset; this.deleted = builder.deleted; this.dependencies = builder.dependencies; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.modifiedTime = builder.modifiedTime; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return autoBuild */ public Boolean getAutoBuild() { return this.autoBuild; } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return createMode */ public String getCreateMode() { return this.createMode; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return deleted */ public Boolean getDeleted() { return this.deleted; } /** * @return dependencies */ public String getDependencies() { return this.dependencies; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private Boolean autoBuild; private String bizUsage; private BuildDetail buildDetail; private String checkStatus; private String createMode; private String createTime; private Dataset dataset; private Boolean deleted; private String dependencies; private String ext; private String id; private String intro; private String materialCoverUrl; private String modifiedTime; private String status; private String title; private String type; /** * AutoBuild. */ public Builder autoBuild(Boolean autoBuild) { this.autoBuild = autoBuild; return this; } /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * CreateMode. */ public Builder createMode(String createMode) { this.createMode = createMode; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Deleted. */ public Builder deleted(Boolean deleted) { this.deleted = deleted; return this; } /** * Dependencies. */ public Builder dependencies(String dependencies) { this.dependencies = dependencies; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * ModifiedTime. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLatestAvatarProjectDetailByUserRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLatestAvatarProjectDetailByUserRequest} extends {@link RequestModel} * * <p>PopQueryLatestAvatarProjectDetailByUserRequest</p> */ public class PopQueryLatestAvatarProjectDetailByUserRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; private PopQueryLatestAvatarProjectDetailByUserRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static PopQueryLatestAvatarProjectDetailByUserRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<PopQueryLatestAvatarProjectDetailByUserRequest, Builder> { private String jwtToken; private Builder() { super(); } private Builder(PopQueryLatestAvatarProjectDetailByUserRequest request) { super(request); this.jwtToken = request.jwtToken; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public PopQueryLatestAvatarProjectDetailByUserRequest build() { return new PopQueryLatestAvatarProjectDetailByUserRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLatestAvatarProjectDetailByUserResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLatestAvatarProjectDetailByUserResponse} extends {@link TeaModel} * * <p>PopQueryLatestAvatarProjectDetailByUserResponse</p> */ public class PopQueryLatestAvatarProjectDetailByUserResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopQueryLatestAvatarProjectDetailByUserResponseBody body; private PopQueryLatestAvatarProjectDetailByUserResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopQueryLatestAvatarProjectDetailByUserResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopQueryLatestAvatarProjectDetailByUserResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopQueryLatestAvatarProjectDetailByUserResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopQueryLatestAvatarProjectDetailByUserResponseBody body); @Override PopQueryLatestAvatarProjectDetailByUserResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopQueryLatestAvatarProjectDetailByUserResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopQueryLatestAvatarProjectDetailByUserResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopQueryLatestAvatarProjectDetailByUserResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopQueryLatestAvatarProjectDetailByUserResponseBody body) { this.body = body; return this; } @Override public PopQueryLatestAvatarProjectDetailByUserResponse build() { return new PopQueryLatestAvatarProjectDetailByUserResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLatestAvatarProjectDetailByUserResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLatestAvatarProjectDetailByUserResponseBody} extends {@link TeaModel} * * <p>PopQueryLatestAvatarProjectDetailByUserResponseBody</p> */ public class PopQueryLatestAvatarProjectDetailByUserResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopQueryLatestAvatarProjectDetailByUserResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopQueryLatestAvatarProjectDetailByUserResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopQueryLatestAvatarProjectDetailByUserResponseBody build() { return new PopQueryLatestAvatarProjectDetailByUserResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; private BuildDetail(Builder builder) { this.runningTime = builder.runningTime; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String runningTime; private String status; /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String errorCode; private String errorMessage; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("CreateTime") private String createTime; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("Status") private String status; @NameInMap("Title") private String title; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.createTime = builder.createTime; this.dataset = builder.dataset; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String bizUsage; private BuildDetail buildDetail; private String createTime; private Dataset dataset; private String ext; private String id; private String intro; private String status; private String title; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLivePortraitModelScopeProjectDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLivePortraitModelScopeProjectDetailRequest} extends {@link RequestModel} * * <p>PopQueryLivePortraitModelScopeProjectDetailRequest</p> */ public class PopQueryLivePortraitModelScopeProjectDetailRequest extends Request { @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopQueryLivePortraitModelScopeProjectDetailRequest(Builder builder) { super(builder); this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopQueryLivePortraitModelScopeProjectDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopQueryLivePortraitModelScopeProjectDetailRequest, Builder> { private String projectId; private Builder() { super(); } private Builder(PopQueryLivePortraitModelScopeProjectDetailRequest request) { super(request); this.projectId = request.projectId; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopQueryLivePortraitModelScopeProjectDetailRequest build() { return new PopQueryLivePortraitModelScopeProjectDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLivePortraitModelScopeProjectDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLivePortraitModelScopeProjectDetailResponse} extends {@link TeaModel} * * <p>PopQueryLivePortraitModelScopeProjectDetailResponse</p> */ public class PopQueryLivePortraitModelScopeProjectDetailResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopQueryLivePortraitModelScopeProjectDetailResponseBody body; private PopQueryLivePortraitModelScopeProjectDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopQueryLivePortraitModelScopeProjectDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopQueryLivePortraitModelScopeProjectDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopQueryLivePortraitModelScopeProjectDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopQueryLivePortraitModelScopeProjectDetailResponseBody body); @Override PopQueryLivePortraitModelScopeProjectDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopQueryLivePortraitModelScopeProjectDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopQueryLivePortraitModelScopeProjectDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopQueryLivePortraitModelScopeProjectDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopQueryLivePortraitModelScopeProjectDetailResponseBody body) { this.body = body; return this; } @Override public PopQueryLivePortraitModelScopeProjectDetailResponse build() { return new PopQueryLivePortraitModelScopeProjectDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryLivePortraitModelScopeProjectDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryLivePortraitModelScopeProjectDetailResponseBody} extends {@link TeaModel} * * <p>PopQueryLivePortraitModelScopeProjectDetailResponseBody</p> */ public class PopQueryLivePortraitModelScopeProjectDetailResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopQueryLivePortraitModelScopeProjectDetailResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopQueryLivePortraitModelScopeProjectDetailResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopQueryLivePortraitModelScopeProjectDetailResponseBody build() { return new PopQueryLivePortraitModelScopeProjectDetailResponseBody(this); } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; private String errorCode; private String errorMessage; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("MaterialCoverUrl") private String materialCoverUrl; @NameInMap("Status") private String status; @NameInMap("Title") private String title; @NameInMap("Type") private String type; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.dataset = builder.dataset; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.materialCoverUrl = builder.materialCoverUrl; this.status = builder.status; this.title = builder.title; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return materialCoverUrl */ public String getMaterialCoverUrl() { return this.materialCoverUrl; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String bizUsage; private Dataset dataset; private String ext; private String id; private String intro; private String materialCoverUrl; private String status; private String title; private String type; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * MaterialCoverUrl. */ public Builder materialCoverUrl(String materialCoverUrl) { this.materialCoverUrl = materialCoverUrl; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryObjectGenerationProjectDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryObjectGenerationProjectDetailRequest} extends {@link RequestModel} * * <p>PopQueryObjectGenerationProjectDetailRequest</p> */ public class PopQueryObjectGenerationProjectDetailRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; @Body @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopQueryObjectGenerationProjectDetailRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopQueryObjectGenerationProjectDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopQueryObjectGenerationProjectDetailRequest, Builder> { private String jwtToken; private String projectId; private Builder() { super(); } private Builder(PopQueryObjectGenerationProjectDetailRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putBodyParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopQueryObjectGenerationProjectDetailRequest build() { return new PopQueryObjectGenerationProjectDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryObjectGenerationProjectDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryObjectGenerationProjectDetailResponse} extends {@link TeaModel} * * <p>PopQueryObjectGenerationProjectDetailResponse</p> */ public class PopQueryObjectGenerationProjectDetailResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopQueryObjectGenerationProjectDetailResponseBody body; private PopQueryObjectGenerationProjectDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopQueryObjectGenerationProjectDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopQueryObjectGenerationProjectDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopQueryObjectGenerationProjectDetailResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopQueryObjectGenerationProjectDetailResponseBody body); @Override PopQueryObjectGenerationProjectDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopQueryObjectGenerationProjectDetailResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopQueryObjectGenerationProjectDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopQueryObjectGenerationProjectDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopQueryObjectGenerationProjectDetailResponseBody body) { this.body = body; return this; } @Override public PopQueryObjectGenerationProjectDetailResponse build() { return new PopQueryObjectGenerationProjectDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopQueryObjectGenerationProjectDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopQueryObjectGenerationProjectDetailResponseBody} extends {@link TeaModel} * * <p>PopQueryObjectGenerationProjectDetailResponseBody</p> */ public class PopQueryObjectGenerationProjectDetailResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopQueryObjectGenerationProjectDetailResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopQueryObjectGenerationProjectDetailResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopQueryObjectGenerationProjectDetailResponseBody build() { return new PopQueryObjectGenerationProjectDetailResponseBody(this); } } public static class BuildDetail extends TeaModel { @NameInMap("CompletedTime") private String completedTime; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Long estimatedDuration; @NameInMap("RunningTime") private String runningTime; @NameInMap("SubmitTime") private String submitTime; private BuildDetail(Builder builder) { this.completedTime = builder.completedTime; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.runningTime = builder.runningTime; this.submitTime = builder.submitTime; } public static Builder builder() { return new Builder(); } public static BuildDetail create() { return builder().build(); } /** * @return completedTime */ public String getCompletedTime() { return this.completedTime; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Long getEstimatedDuration() { return this.estimatedDuration; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return submitTime */ public String getSubmitTime() { return this.submitTime; } public static final class Builder { private String completedTime; private String errorMessage; private Long estimatedDuration; private String runningTime; private String submitTime; /** * CompletedTime. */ public Builder completedTime(String completedTime) { this.completedTime = completedTime; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Long estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * SubmitTime. */ public Builder submitTime(String submitTime) { this.submitTime = submitTime; return this; } public BuildDetail build() { return new BuildDetail(this); } } } public static class Dataset extends TeaModel { @NameInMap("BuildResultUrl") private java.util.Map < String, ? > buildResultUrl; private Dataset(Builder builder) { this.buildResultUrl = builder.buildResultUrl; } public static Builder builder() { return new Builder(); } public static Dataset create() { return builder().build(); } /** * @return buildResultUrl */ public java.util.Map < String, ? > getBuildResultUrl() { return this.buildResultUrl; } public static final class Builder { private java.util.Map < String, ? > buildResultUrl; /** * BuildResultUrl. */ public Builder buildResultUrl(java.util.Map < String, ? > buildResultUrl) { this.buildResultUrl = buildResultUrl; return this; } public Dataset build() { return new Dataset(this); } } } public static class Data extends TeaModel { @NameInMap("BizUsage") private String bizUsage; @NameInMap("BuildDetail") private BuildDetail buildDetail; @NameInMap("Dataset") private Dataset dataset; @NameInMap("Ext") private String ext; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("Status") private String status; @NameInMap("Title") private String title; private Data(Builder builder) { this.bizUsage = builder.bizUsage; this.buildDetail = builder.buildDetail; this.dataset = builder.dataset; this.ext = builder.ext; this.id = builder.id; this.intro = builder.intro; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return bizUsage */ public String getBizUsage() { return this.bizUsage; } /** * @return buildDetail */ public BuildDetail getBuildDetail() { return this.buildDetail; } /** * @return dataset */ public Dataset getDataset() { return this.dataset; } /** * @return ext */ public String getExt() { return this.ext; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String bizUsage; private BuildDetail buildDetail; private Dataset dataset; private String ext; private String id; private String intro; private String status; private String title; /** * BizUsage. */ public Builder bizUsage(String bizUsage) { this.bizUsage = bizUsage; return this; } /** * BuildDetail. */ public Builder buildDetail(BuildDetail buildDetail) { this.buildDetail = buildDetail; return this; } /** * Dataset. */ public Builder dataset(Dataset dataset) { this.dataset = dataset; return this; } /** * Ext. */ public Builder ext(String ext) { this.ext = ext; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopRetryAITryOnTaskRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopRetryAITryOnTaskRequest} extends {@link RequestModel} * * <p>PopRetryAITryOnTaskRequest</p> */ public class PopRetryAITryOnTaskRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; private PopRetryAITryOnTaskRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static PopRetryAITryOnTaskRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder extends Request.Builder<PopRetryAITryOnTaskRequest, Builder> { private String jwtToken; private String projectId; private Builder() { super(); } private Builder(PopRetryAITryOnTaskRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } @Override public PopRetryAITryOnTaskRequest build() { return new PopRetryAITryOnTaskRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopRetryAITryOnTaskResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopRetryAITryOnTaskResponse} extends {@link TeaModel} * * <p>PopRetryAITryOnTaskResponse</p> */ public class PopRetryAITryOnTaskResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopRetryAITryOnTaskResponseBody body; private PopRetryAITryOnTaskResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopRetryAITryOnTaskResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopRetryAITryOnTaskResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopRetryAITryOnTaskResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopRetryAITryOnTaskResponseBody body); @Override PopRetryAITryOnTaskResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopRetryAITryOnTaskResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopRetryAITryOnTaskResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopRetryAITryOnTaskResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopRetryAITryOnTaskResponseBody body) { this.body = body; return this; } @Override public PopRetryAITryOnTaskResponse build() { return new PopRetryAITryOnTaskResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopRetryAITryOnTaskResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopRetryAITryOnTaskResponseBody} extends {@link TeaModel} * * <p>PopRetryAITryOnTaskResponseBody</p> */ public class PopRetryAITryOnTaskResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopRetryAITryOnTaskResponseBody(Builder builder) { this.code = builder.code; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopRetryAITryOnTaskResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopRetryAITryOnTaskResponseBody build() { return new PopRetryAITryOnTaskResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopSubmitAITryOnJobRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopSubmitAITryOnJobRequest} extends {@link RequestModel} * * <p>PopSubmitAITryOnJobRequest</p> */ public class PopSubmitAITryOnJobRequest extends Request { @Query @NameInMap("BottomsId") private String bottomsId; @Query @NameInMap("ClothingType") @Validation(required = true) private String clothingType; @Query @NameInMap("GeneratePictureNum") private Integer generatePictureNum; @Query @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ModelId") @Validation(required = true) private String modelId; @Query @NameInMap("ShoeType") private String shoeType; @Query @NameInMap("SuitId") private String suitId; @Query @NameInMap("TopsId") private String topsId; private PopSubmitAITryOnJobRequest(Builder builder) { super(builder); this.bottomsId = builder.bottomsId; this.clothingType = builder.clothingType; this.generatePictureNum = builder.generatePictureNum; this.jwtToken = builder.jwtToken; this.modelId = builder.modelId; this.shoeType = builder.shoeType; this.suitId = builder.suitId; this.topsId = builder.topsId; } public static Builder builder() { return new Builder(); } public static PopSubmitAITryOnJobRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return bottomsId */ public String getBottomsId() { return this.bottomsId; } /** * @return clothingType */ public String getClothingType() { return this.clothingType; } /** * @return generatePictureNum */ public Integer getGeneratePictureNum() { return this.generatePictureNum; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return modelId */ public String getModelId() { return this.modelId; } /** * @return shoeType */ public String getShoeType() { return this.shoeType; } /** * @return suitId */ public String getSuitId() { return this.suitId; } /** * @return topsId */ public String getTopsId() { return this.topsId; } public static final class Builder extends Request.Builder<PopSubmitAITryOnJobRequest, Builder> { private String bottomsId; private String clothingType; private Integer generatePictureNum; private String jwtToken; private String modelId; private String shoeType; private String suitId; private String topsId; private Builder() { super(); } private Builder(PopSubmitAITryOnJobRequest request) { super(request); this.bottomsId = request.bottomsId; this.clothingType = request.clothingType; this.generatePictureNum = request.generatePictureNum; this.jwtToken = request.jwtToken; this.modelId = request.modelId; this.shoeType = request.shoeType; this.suitId = request.suitId; this.topsId = request.topsId; } /** * BottomsId. */ public Builder bottomsId(String bottomsId) { this.putQueryParameter("BottomsId", bottomsId); this.bottomsId = bottomsId; return this; } /** * ClothingType. */ public Builder clothingType(String clothingType) { this.putQueryParameter("ClothingType", clothingType); this.clothingType = clothingType; return this; } /** * GeneratePictureNum. */ public Builder generatePictureNum(Integer generatePictureNum) { this.putQueryParameter("GeneratePictureNum", generatePictureNum); this.generatePictureNum = generatePictureNum; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ModelId. */ public Builder modelId(String modelId) { this.putQueryParameter("ModelId", modelId); this.modelId = modelId; return this; } /** * ShoeType. */ public Builder shoeType(String shoeType) { this.putQueryParameter("ShoeType", shoeType); this.shoeType = shoeType; return this; } /** * SuitId. */ public Builder suitId(String suitId) { this.putQueryParameter("SuitId", suitId); this.suitId = suitId; return this; } /** * TopsId. */ public Builder topsId(String topsId) { this.putQueryParameter("TopsId", topsId); this.topsId = topsId; return this; } @Override public PopSubmitAITryOnJobRequest build() { return new PopSubmitAITryOnJobRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopSubmitAITryOnJobResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopSubmitAITryOnJobResponse} extends {@link TeaModel} * * <p>PopSubmitAITryOnJobResponse</p> */ public class PopSubmitAITryOnJobResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopSubmitAITryOnJobResponseBody body; private PopSubmitAITryOnJobResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopSubmitAITryOnJobResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopSubmitAITryOnJobResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopSubmitAITryOnJobResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopSubmitAITryOnJobResponseBody body); @Override PopSubmitAITryOnJobResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopSubmitAITryOnJobResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopSubmitAITryOnJobResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopSubmitAITryOnJobResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopSubmitAITryOnJobResponseBody body) { this.body = body; return this; } @Override public PopSubmitAITryOnJobResponse build() { return new PopSubmitAITryOnJobResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopSubmitAITryOnJobResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopSubmitAITryOnJobResponseBody} extends {@link TeaModel} * * <p>PopSubmitAITryOnJobResponseBody</p> */ public class PopSubmitAITryOnJobResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopSubmitAITryOnJobResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopSubmitAITryOnJobResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopSubmitAITryOnJobResponseBody build() { return new PopSubmitAITryOnJobResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("ProjectId") private String projectId; private Data(Builder builder) { this.projectId = builder.projectId; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return projectId */ public String getProjectId() { return this.projectId; } public static final class Builder { private String projectId; /** * ProjectId. */ public Builder projectId(String projectId) { this.projectId = projectId; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopUploadMaterialRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopUploadMaterialRequest} extends {@link RequestModel} * * <p>PopUploadMaterialRequest</p> */ public class PopUploadMaterialRequest extends Request { @Query @NameInMap("JwtToken") private String jwtToken; private PopUploadMaterialRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static PopUploadMaterialRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<PopUploadMaterialRequest, Builder> { private String jwtToken; private Builder() { super(); } private Builder(PopUploadMaterialRequest request) { super(request); this.jwtToken = request.jwtToken; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public PopUploadMaterialRequest build() { return new PopUploadMaterialRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopUploadMaterialResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopUploadMaterialResponse} extends {@link TeaModel} * * <p>PopUploadMaterialResponse</p> */ public class PopUploadMaterialResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopUploadMaterialResponseBody body; private PopUploadMaterialResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopUploadMaterialResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopUploadMaterialResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopUploadMaterialResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopUploadMaterialResponseBody body); @Override PopUploadMaterialResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopUploadMaterialResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopUploadMaterialResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopUploadMaterialResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopUploadMaterialResponseBody body) { this.body = body; return this; } @Override public PopUploadMaterialResponse build() { return new PopUploadMaterialResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopUploadMaterialResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopUploadMaterialResponseBody} extends {@link TeaModel} * * <p>PopUploadMaterialResponseBody</p> */ public class PopUploadMaterialResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopUploadMaterialResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopUploadMaterialResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopUploadMaterialResponseBody build() { return new PopUploadMaterialResponseBody(this); } } public static class Policy extends TeaModel { @NameInMap("AccessId") private String accessId; @NameInMap("Dir") private String dir; @NameInMap("Expire") private String expire; @NameInMap("Host") private String host; @NameInMap("Policy") private String policy; @NameInMap("Signature") private String signature; private Policy(Builder builder) { this.accessId = builder.accessId; this.dir = builder.dir; this.expire = builder.expire; this.host = builder.host; this.policy = builder.policy; this.signature = builder.signature; } public static Builder builder() { return new Builder(); } public static Policy create() { return builder().build(); } /** * @return accessId */ public String getAccessId() { return this.accessId; } /** * @return dir */ public String getDir() { return this.dir; } /** * @return expire */ public String getExpire() { return this.expire; } /** * @return host */ public String getHost() { return this.host; } /** * @return policy */ public String getPolicy() { return this.policy; } /** * @return signature */ public String getSignature() { return this.signature; } public static final class Builder { private String accessId; private String dir; private String expire; private String host; private String policy; private String signature; /** * AccessId. */ public Builder accessId(String accessId) { this.accessId = accessId; return this; } /** * Dir. */ public Builder dir(String dir) { this.dir = dir; return this; } /** * Expire. */ public Builder expire(String expire) { this.expire = expire; return this; } /** * Host. */ public Builder host(String host) { this.host = host; return this; } /** * Policy. */ public Builder policy(String policy) { this.policy = policy; return this; } /** * Signature. */ public Builder signature(String signature) { this.signature = signature; return this; } public Policy build() { return new Policy(this); } } } public static class Data extends TeaModel { @NameInMap("OssKey") private String ossKey; @NameInMap("Policy") private Policy policy; private Data(Builder builder) { this.ossKey = builder.ossKey; this.policy = builder.policy; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return ossKey */ public String getOssKey() { return this.ossKey; } /** * @return policy */ public Policy getPolicy() { return this.policy; } public static final class Builder { private String ossKey; private Policy policy; /** * OssKey. */ public Builder ossKey(String ossKey) { this.ossKey = ossKey; return this; } /** * Policy. */ public Builder policy(Policy policy) { this.policy = policy; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopVideoSaveSourceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopVideoSaveSourceRequest} extends {@link RequestModel} * * <p>PopVideoSaveSourceRequest</p> */ public class PopVideoSaveSourceRequest extends Request { @Body @NameInMap("JwtToken") private String jwtToken; @Query @NameInMap("ProjectId") @Validation(required = true) private String projectId; @Query @NameInMap("SourceType") private String sourceType; private PopVideoSaveSourceRequest(Builder builder) { super(builder); this.jwtToken = builder.jwtToken; this.projectId = builder.projectId; this.sourceType = builder.sourceType; } public static Builder builder() { return new Builder(); } public static PopVideoSaveSourceRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } /** * @return projectId */ public String getProjectId() { return this.projectId; } /** * @return sourceType */ public String getSourceType() { return this.sourceType; } public static final class Builder extends Request.Builder<PopVideoSaveSourceRequest, Builder> { private String jwtToken; private String projectId; private String sourceType; private Builder() { super(); } private Builder(PopVideoSaveSourceRequest request) { super(request); this.jwtToken = request.jwtToken; this.projectId = request.projectId; this.sourceType = request.sourceType; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putBodyParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } /** * ProjectId. */ public Builder projectId(String projectId) { this.putQueryParameter("ProjectId", projectId); this.projectId = projectId; return this; } /** * SourceType. */ public Builder sourceType(String sourceType) { this.putQueryParameter("SourceType", sourceType); this.sourceType = sourceType; return this; } @Override public PopVideoSaveSourceRequest build() { return new PopVideoSaveSourceRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopVideoSaveSourceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopVideoSaveSourceResponse} extends {@link TeaModel} * * <p>PopVideoSaveSourceResponse</p> */ public class PopVideoSaveSourceResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private PopVideoSaveSourceResponseBody body; private PopVideoSaveSourceResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static PopVideoSaveSourceResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public PopVideoSaveSourceResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<PopVideoSaveSourceResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(PopVideoSaveSourceResponseBody body); @Override PopVideoSaveSourceResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<PopVideoSaveSourceResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private PopVideoSaveSourceResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(PopVideoSaveSourceResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(PopVideoSaveSourceResponseBody body) { this.body = body; return this; } @Override public PopVideoSaveSourceResponse build() { return new PopVideoSaveSourceResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/PopVideoSaveSourceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link PopVideoSaveSourceResponseBody} extends {@link TeaModel} * * <p>PopVideoSaveSourceResponseBody</p> */ public class PopVideoSaveSourceResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("ErrorName") private String errorName; @NameInMap("HttpCode") private Integer httpCode; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private PopVideoSaveSourceResponseBody(Builder builder) { this.code = builder.code; this.errorName = builder.errorName; this.httpCode = builder.httpCode; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static PopVideoSaveSourceResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return errorName */ public String getErrorName() { return this.errorName; } /** * @return httpCode */ public Integer getHttpCode() { return this.httpCode; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private String errorName; private Integer httpCode; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * ErrorName. */ public Builder errorName(String errorName) { this.errorName = errorName; return this; } /** * HttpCode. */ public Builder httpCode(Integer httpCode) { this.httpCode = httpCode; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public PopVideoSaveSourceResponseBody build() { return new PopVideoSaveSourceResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryDigitalHumanProjectRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryDigitalHumanProjectRequest} extends {@link RequestModel} * * <p>QueryDigitalHumanProjectRequest</p> */ public class QueryDigitalHumanProjectRequest extends Request { @Body @NameInMap("Ids") private String ids; @Query @NameInMap("JwtToken") private String jwtToken; private QueryDigitalHumanProjectRequest(Builder builder) { super(builder); this.ids = builder.ids; this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static QueryDigitalHumanProjectRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return ids */ public String getIds() { return this.ids; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<QueryDigitalHumanProjectRequest, Builder> { private String ids; private String jwtToken; private Builder() { super(); } private Builder(QueryDigitalHumanProjectRequest request) { super(request); this.ids = request.ids; this.jwtToken = request.jwtToken; } /** * Ids. */ public Builder ids(String ids) { this.putBodyParameter("Ids", ids); this.ids = ids; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public QueryDigitalHumanProjectRequest build() { return new QueryDigitalHumanProjectRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryDigitalHumanProjectResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryDigitalHumanProjectResponse} extends {@link TeaModel} * * <p>QueryDigitalHumanProjectResponse</p> */ public class QueryDigitalHumanProjectResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private QueryDigitalHumanProjectResponseBody body; private QueryDigitalHumanProjectResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryDigitalHumanProjectResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryDigitalHumanProjectResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryDigitalHumanProjectResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryDigitalHumanProjectResponseBody body); @Override QueryDigitalHumanProjectResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryDigitalHumanProjectResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryDigitalHumanProjectResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryDigitalHumanProjectResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryDigitalHumanProjectResponseBody body) { this.body = body; return this; } @Override public QueryDigitalHumanProjectResponse build() { return new QueryDigitalHumanProjectResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryDigitalHumanProjectResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryDigitalHumanProjectResponseBody} extends {@link TeaModel} * * <p>QueryDigitalHumanProjectResponseBody</p> */ public class QueryDigitalHumanProjectResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private java.util.List < Data> data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private QueryDigitalHumanProjectResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static QueryDigitalHumanProjectResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public java.util.List < Data> getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private java.util.List < Data> data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(java.util.List < Data> data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public QueryDigitalHumanProjectResponseBody build() { return new QueryDigitalHumanProjectResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("ErrorCode") private String errorCode; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("EstimatedDuration") private Integer estimatedDuration; @NameInMap("FileUrl") private String fileUrl; @NameInMap("Id") private String id; @NameInMap("Intro") private String intro; @NameInMap("RunningTime") private String runningTime; @NameInMap("Status") private String status; @NameInMap("SubtitleUrl") private String subtitleUrl; @NameInMap("Title") private String title; @NameInMap("VideoLength") private Integer videoLength; @NameInMap("WaitingTime") private Integer waitingTime; private Data(Builder builder) { this.errorCode = builder.errorCode; this.errorMessage = builder.errorMessage; this.estimatedDuration = builder.estimatedDuration; this.fileUrl = builder.fileUrl; this.id = builder.id; this.intro = builder.intro; this.runningTime = builder.runningTime; this.status = builder.status; this.subtitleUrl = builder.subtitleUrl; this.title = builder.title; this.videoLength = builder.videoLength; this.waitingTime = builder.waitingTime; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return errorCode */ public String getErrorCode() { return this.errorCode; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @return estimatedDuration */ public Integer getEstimatedDuration() { return this.estimatedDuration; } /** * @return fileUrl */ public String getFileUrl() { return this.fileUrl; } /** * @return id */ public String getId() { return this.id; } /** * @return intro */ public String getIntro() { return this.intro; } /** * @return runningTime */ public String getRunningTime() { return this.runningTime; } /** * @return status */ public String getStatus() { return this.status; } /** * @return subtitleUrl */ public String getSubtitleUrl() { return this.subtitleUrl; } /** * @return title */ public String getTitle() { return this.title; } /** * @return videoLength */ public Integer getVideoLength() { return this.videoLength; } /** * @return waitingTime */ public Integer getWaitingTime() { return this.waitingTime; } public static final class Builder { private String errorCode; private String errorMessage; private Integer estimatedDuration; private String fileUrl; private String id; private String intro; private String runningTime; private String status; private String subtitleUrl; private String title; private Integer videoLength; private Integer waitingTime; /** * ErrorCode. */ public Builder errorCode(String errorCode) { this.errorCode = errorCode; return this; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } /** * EstimatedDuration. */ public Builder estimatedDuration(Integer estimatedDuration) { this.estimatedDuration = estimatedDuration; return this; } /** * FileUrl. */ public Builder fileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Intro. */ public Builder intro(String intro) { this.intro = intro; return this; } /** * RunningTime. */ public Builder runningTime(String runningTime) { this.runningTime = runningTime; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * SubtitleUrl. */ public Builder subtitleUrl(String subtitleUrl) { this.subtitleUrl = subtitleUrl; return this; } /** * Title. */ public Builder title(String title) { this.title = title; return this; } /** * VideoLength. */ public Builder videoLength(Integer videoLength) { this.videoLength = videoLength; return this; } /** * WaitingTime. */ public Builder waitingTime(Integer waitingTime) { this.waitingTime = waitingTime; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryLongTtsResultRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryLongTtsResultRequest} extends {@link RequestModel} * * <p>QueryLongTtsResultRequest</p> */ public class QueryLongTtsResultRequest extends Request { @Body @NameInMap("JobId") @Validation(required = true) private String jobId; @Query @NameInMap("JwtToken") private String jwtToken; private QueryLongTtsResultRequest(Builder builder) { super(builder); this.jobId = builder.jobId; this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static QueryLongTtsResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jobId */ public String getJobId() { return this.jobId; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<QueryLongTtsResultRequest, Builder> { private String jobId; private String jwtToken; private Builder() { super(); } private Builder(QueryLongTtsResultRequest request) { super(request); this.jobId = request.jobId; this.jwtToken = request.jwtToken; } /** * JobId. */ public Builder jobId(String jobId) { this.putBodyParameter("JobId", jobId); this.jobId = jobId; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public QueryLongTtsResultRequest build() { return new QueryLongTtsResultRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryLongTtsResultResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryLongTtsResultResponse} extends {@link TeaModel} * * <p>QueryLongTtsResultResponse</p> */ public class QueryLongTtsResultResponse extends Response { @NameInMap("headers") private java.util.Map < String, String > headers; @NameInMap("statusCode") private Integer statusCode; @NameInMap("body") private QueryLongTtsResultResponseBody body; private QueryLongTtsResultResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static QueryLongTtsResultResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map < String, String > getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public QueryLongTtsResultResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<QueryLongTtsResultResponse, Builder> { Builder headers(java.util.Map < String, String > headers); Builder statusCode(Integer statusCode); Builder body(QueryLongTtsResultResponseBody body); @Override QueryLongTtsResultResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<QueryLongTtsResultResponse, Builder> implements Builder { private java.util.Map < String, String > headers; private Integer statusCode; private QueryLongTtsResultResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(QueryLongTtsResultResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map < String, String > headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(QueryLongTtsResultResponseBody body) { this.body = body; return this; } @Override public QueryLongTtsResultResponse build() { return new QueryLongTtsResultResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryLongTtsResultResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryLongTtsResultResponseBody} extends {@link TeaModel} * * <p>QueryLongTtsResultResponseBody</p> */ public class QueryLongTtsResultResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private QueryLongTtsResultResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static QueryLongTtsResultResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public QueryLongTtsResultResponseBody build() { return new QueryLongTtsResultResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("AudioUrl") private String audioUrl; @NameInMap("Duration") private Float duration; @NameInMap("Status") private String status; private Data(Builder builder) { this.audioUrl = builder.audioUrl; this.duration = builder.duration; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return audioUrl */ public String getAudioUrl() { return this.audioUrl; } /** * @return duration */ public Float getDuration() { return this.duration; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String audioUrl; private Float duration; private String status; /** * AudioUrl. */ public Builder audioUrl(String audioUrl) { this.audioUrl = audioUrl; return this; } /** * Duration. */ public Builder duration(Float duration) { this.duration = duration; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public Data build() { return new Data(this); } } } }
0
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313
java-sources/com/aliyun/alibabacloud-xrengine20230313/1.0.9/com/aliyun/sdk/service/xrengine20230313/models/QueryMotionShopVideoDetectResultRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.xrengine20230313.models; import com.aliyun.core.annotation.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * {@link QueryMotionShopVideoDetectResultRequest} extends {@link RequestModel} * * <p>QueryMotionShopVideoDetectResultRequest</p> */ public class QueryMotionShopVideoDetectResultRequest extends Request { @Body @NameInMap("JobId") @Validation(required = true) private String jobId; @Query @NameInMap("JwtToken") private String jwtToken; private QueryMotionShopVideoDetectResultRequest(Builder builder) { super(builder); this.jobId = builder.jobId; this.jwtToken = builder.jwtToken; } public static Builder builder() { return new Builder(); } public static QueryMotionShopVideoDetectResultRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return jobId */ public String getJobId() { return this.jobId; } /** * @return jwtToken */ public String getJwtToken() { return this.jwtToken; } public static final class Builder extends Request.Builder<QueryMotionShopVideoDetectResultRequest, Builder> { private String jobId; private String jwtToken; private Builder() { super(); } private Builder(QueryMotionShopVideoDetectResultRequest request) { super(request); this.jobId = request.jobId; this.jwtToken = request.jwtToken; } /** * JobId. */ public Builder jobId(String jobId) { this.putBodyParameter("JobId", jobId); this.jobId = jobId; return this; } /** * JwtToken. */ public Builder jwtToken(String jwtToken) { this.putQueryParameter("JwtToken", jwtToken); this.jwtToken = jwtToken; return this; } @Override public QueryMotionShopVideoDetectResultRequest build() { return new QueryMotionShopVideoDetectResultRequest(this); } } }