com.aliyun.tdsr20200101.models.RecoveryOriginImageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tdsr20200101 Show documentation
Show all versions of tdsr20200101 Show documentation
Alibaba Cloud 3D space reconstruction (20200101) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.tdsr20200101.models;
import com.aliyun.tea.*;
public class RecoveryOriginImageRequest extends TeaModel {
// 子场景ID
@NameInMap("SubSceneId")
public String subSceneId;
public static RecoveryOriginImageRequest build(java.util.Map map) throws Exception {
RecoveryOriginImageRequest self = new RecoveryOriginImageRequest();
return TeaModel.build(map, self);
}
public RecoveryOriginImageRequest setSubSceneId(String subSceneId) {
this.subSceneId = subSceneId;
return this;
}
public String getSubSceneId() {
return this.subSceneId;
}
}