index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteMigrationJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMigrationJobRequest extends RoaAcsRequest<DeleteMigrationJobResponse> { private Integer id; public DeleteMigrationJobRequest() { super("apds", "2022-03-31", "DeleteMigrationJob"); setUriPattern("/okss-services/migration-job/remove-migration-job"); setMethod(MethodType.POST); } public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; if(id != null){ putQueryParameter("id", id.toString()); } } @Override public Class<DeleteMigrationJobResponse> getResponseClass() { return DeleteMigrationJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteMigrationJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DeleteMigrationJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMigrationJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DeleteMigrationJobResponse getInstance(UnmarshallerContext context) { return DeleteMigrationJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteOssFileRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteOssFileRequest extends RoaAcsRequest<DeleteOssFileResponse> { private String objectName; public DeleteOssFileRequest() { super("apds", "2022-03-31", "DeleteOssFile"); setUriPattern("/okss-services/file-job/delete-file"); setMethod(MethodType.POST); } public String getObjectName() { return this.objectName; } public void setObjectName(String objectName) { this.objectName = objectName; if(objectName != null){ putQueryParameter("objectName", objectName); } } @Override public Class<DeleteOssFileResponse> getResponseClass() { return DeleteOssFileResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteOssFileResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DeleteOssFileResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteOssFileResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DeleteOssFileResponse getInstance(UnmarshallerContext context) { return DeleteOssFileResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteSurveyJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteSurveyJobRequest extends RoaAcsRequest<DeleteSurveyJobResponse> { private Integer id; public DeleteSurveyJobRequest() { super("apds", "2022-03-31", "DeleteSurveyJob"); setUriPattern("/okss-services/winback/delete-survey-job"); setMethod(MethodType.POST); } public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; if(id != null){ putQueryParameter("id", id.toString()); } } @Override public Class<DeleteSurveyJobResponse> getResponseClass() { return DeleteSurveyJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteSurveyJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DeleteSurveyJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSurveyJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DeleteSurveyJobResponse getInstance(UnmarshallerContext context) { return DeleteSurveyJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteSurveyResourcesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteSurveyResourcesRequest extends RoaAcsRequest<DeleteSurveyResourcesResponse> { private String ids; public DeleteSurveyResourcesRequest() { super("apds", "2022-03-31", "DeleteSurveyResources"); setUriPattern("/okss-services/confirm-resource/destroy"); setMethod(MethodType.POST); } public String getIds() { return this.ids; } public void setIds(String ids) { this.ids = ids; if(ids != null){ putQueryParameter("ids", ids); } } @Override public Class<DeleteSurveyResourcesResponse> getResponseClass() { return DeleteSurveyResourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DeleteSurveyResourcesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DeleteSurveyResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSurveyResourcesResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DeleteSurveyResourcesResponse getInstance(UnmarshallerContext context) { return DeleteSurveyResourcesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeMigrationJobConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeMigrationJobConfigRequest extends RoaAcsRequest<DescribeMigrationJobConfigResponse> { public DescribeMigrationJobConfigRequest() { super("apds", "2022-03-31", "DescribeMigrationJobConfig"); setUriPattern("/okss-services/migration-job/describe-migration-job-config"); setMethod(MethodType.POST); } @Override public Class<DescribeMigrationJobConfigResponse> getResponseClass() { return DescribeMigrationJobConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeMigrationJobConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeMigrationJobConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeMigrationJobConfigResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeMigrationJobConfigResponse getInstance(UnmarshallerContext context) { return DescribeMigrationJobConfigResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeMigrationJobCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeMigrationJobCountRequest extends RoaAcsRequest<DescribeMigrationJobCountResponse> { private String body; public DescribeMigrationJobCountRequest() { super("apds", "2022-03-31", "DescribeMigrationJobCount"); setUriPattern("/okss-services/migration-job/count-migration-jobs"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<DescribeMigrationJobCountResponse> getResponseClass() { return DescribeMigrationJobCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeMigrationJobCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeMigrationJobCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeMigrationJobCountResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeMigrationJobCountResponse getInstance(UnmarshallerContext context) { return DescribeMigrationJobCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeOssStsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeOssStsRequest extends RoaAcsRequest<DescribeOssStsResponse> { private String cloudType; private String ak; private String sk; private String tenantId; private String region; public DescribeOssStsRequest() { super("apds", "2022-03-31", "DescribeOssSts"); setUriPattern("/okss-services/file-job/sts"); setMethod(MethodType.POST); } public String getCloudType() { return this.cloudType; } public void setCloudType(String cloudType) { this.cloudType = cloudType; if(cloudType != null){ putQueryParameter("cloudType", cloudType); } } public String getAk() { return this.ak; } public void setAk(String ak) { this.ak = ak; if(ak != null){ putQueryParameter("ak", ak); } } public String getSk() { return this.sk; } public void setSk(String sk) { this.sk = sk; if(sk != null){ putQueryParameter("sk", sk); } } public String getTenantId() { return this.tenantId; } public void setTenantId(String tenantId) { this.tenantId = tenantId; if(tenantId != null){ putQueryParameter("tenantId", tenantId); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("region", region); } } @Override public Class<DescribeOssStsResponse> getResponseClass() { return DescribeOssStsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeOssStsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeOssStsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeOssStsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeOssStsResponse getInstance(UnmarshallerContext context) { return DescribeOssStsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSummaryByStatusAndGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSummaryByStatusAndGroupRequest extends RoaAcsRequest<DescribeSummaryByStatusAndGroupResponse> { public DescribeSummaryByStatusAndGroupRequest() { super("apds", "2022-03-31", "DescribeSummaryByStatusAndGroup"); setUriPattern("/okss-services/summary/summary-by-status-and-region"); setMethod(MethodType.POST); } @Override public Class<DescribeSummaryByStatusAndGroupResponse> getResponseClass() { return DescribeSummaryByStatusAndGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSummaryByStatusAndGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSummaryByStatusAndGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSummaryByStatusAndGroupResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSummaryByStatusAndGroupResponse getInstance(UnmarshallerContext context) { return DescribeSummaryByStatusAndGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSummaryByStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSummaryByStatusRequest extends RoaAcsRequest<DescribeSummaryByStatusResponse> { public DescribeSummaryByStatusRequest() { super("apds", "2022-03-31", "DescribeSummaryByStatus"); setUriPattern("/okss-services/summary/summary-by-status"); setMethod(MethodType.POST); } @Override public Class<DescribeSummaryByStatusResponse> getResponseClass() { return DescribeSummaryByStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSummaryByStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSummaryByStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSummaryByStatusResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSummaryByStatusResponse getInstance(UnmarshallerContext context) { return DescribeSummaryByStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyJobCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSurveyJobCountRequest extends RoaAcsRequest<DescribeSurveyJobCountResponse> { public DescribeSurveyJobCountRequest() { super("apds", "2022-03-31", "DescribeSurveyJobCount"); setUriPattern("/okss-services/winback/count-survey-job"); setMethod(MethodType.POST); } @Override public Class<DescribeSurveyJobCountResponse> getResponseClass() { return DescribeSurveyJobCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyJobCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSurveyJobCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSurveyJobCountResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSurveyJobCountResponse getInstance(UnmarshallerContext context) { return DescribeSurveyJobCountResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSurveyJobRequest extends RoaAcsRequest<DescribeSurveyJobResponse> { private Integer id; public DescribeSurveyJobRequest() { super("apds", "2022-03-31", "DescribeSurveyJob"); setUriPattern("/okss-services/winback/query-survey-job"); setMethod(MethodType.POST); } public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; if(id != null){ putQueryParameter("id", id.toString()); } } @Override public Class<DescribeSurveyJobResponse> getResponseClass() { return DescribeSurveyJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSurveyJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSurveyJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSurveyJobResponse getInstance(UnmarshallerContext context) { return DescribeSurveyJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyResourceTagRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSurveyResourceTagRequest extends RoaAcsRequest<DescribeSurveyResourceTagResponse> { public DescribeSurveyResourceTagRequest() { super("apds", "2022-03-31", "DescribeSurveyResourceTag"); setUriPattern("/okss-services/confirm-resource/get-resource-tag"); setMethod(MethodType.POST); } @Override public Class<DescribeSurveyResourceTagResponse> getResponseClass() { return DescribeSurveyResourceTagResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyResourceTagResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSurveyResourceTagResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSurveyResourceTagResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSurveyResourceTagResponse getInstance(UnmarshallerContext context) { return DescribeSurveyResourceTagResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyTemplateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeSurveyTemplateRequest extends RoaAcsRequest<DescribeSurveyTemplateResponse> { private String resourceType; public DescribeSurveyTemplateRequest() { super("apds", "2022-03-31", "DescribeSurveyTemplate"); setUriPattern("/okss-services/survey-template/list"); setMethod(MethodType.POST); } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("resourceType", resourceType); } } @Override public Class<DescribeSurveyTemplateResponse> getResponseClass() { return DescribeSurveyTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/DescribeSurveyTemplateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.DescribeSurveyTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSurveyTemplateResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public DescribeSurveyTemplateResponse getInstance(UnmarshallerContext context) { return DescribeSurveyTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListMigrationJobsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListMigrationJobsRequest extends RoaAcsRequest<ListMigrationJobsResponse> { private String body; public ListMigrationJobsRequest() { super("apds", "2022-03-31", "ListMigrationJobs"); setUriPattern("/okss-services/migration-job/describe-migration-jobs"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ListMigrationJobsResponse> getResponseClass() { return ListMigrationJobsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListMigrationJobsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListMigrationJobsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListMigrationJobsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListMigrationJobsResponse getInstance(UnmarshallerContext context) { return ListMigrationJobsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListRegionsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListRegionsRequest extends RoaAcsRequest<ListRegionsResponse> { private String cloudType; private String ak; private String sk; private String tenantId; private String region; public ListRegionsRequest() { super("apds", "2022-03-31", "ListRegions"); setUriPattern("/okss-services/winback/query-region"); setMethod(MethodType.POST); } public String getCloudType() { return this.cloudType; } public void setCloudType(String cloudType) { this.cloudType = cloudType; if(cloudType != null){ putQueryParameter("cloudType", cloudType); } } public String getAk() { return this.ak; } public void setAk(String ak) { this.ak = ak; if(ak != null){ putQueryParameter("ak", ak); } } public String getSk() { return this.sk; } public void setSk(String sk) { this.sk = sk; if(sk != null){ putQueryParameter("sk", sk); } } public String getTenantId() { return this.tenantId; } public void setTenantId(String tenantId) { this.tenantId = tenantId; if(tenantId != null){ putQueryParameter("tenantId", tenantId); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("region", region); } } @Override public Class<ListRegionsResponse> getResponseClass() { return ListRegionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListRegionsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListRegionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListRegionsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListRegionsResponse getInstance(UnmarshallerContext context) { return ListRegionsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyJobDownLoadJobsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyJobDownLoadJobsRequest extends RoaAcsRequest<ListSurveyJobDownLoadJobsResponse> { private String body; public ListSurveyJobDownLoadJobsRequest() { super("apds", "2022-03-31", "ListSurveyJobDownLoadJobs"); setUriPattern("/okss-services/file-job/list"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ListSurveyJobDownLoadJobsResponse> getResponseClass() { return ListSurveyJobDownLoadJobsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyJobDownLoadJobsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyJobDownLoadJobsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyJobDownLoadJobsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyJobDownLoadJobsResponse getInstance(UnmarshallerContext context) { return ListSurveyJobDownLoadJobsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyJobsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyJobsRequest extends RoaAcsRequest<ListSurveyJobsResponse> { private String body; public ListSurveyJobsRequest() { super("apds", "2022-03-31", "ListSurveyJobs"); setUriPattern("/okss-services/winback/query-survey-jobs"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ListSurveyJobsResponse> getResponseClass() { return ListSurveyJobsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyJobsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyJobsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyJobsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyJobsResponse getInstance(UnmarshallerContext context) { return ListSurveyJobsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceByMigrationGroupsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyResourceByMigrationGroupsRequest extends RoaAcsRequest<ListSurveyResourceByMigrationGroupsResponse> { private String body; public ListSurveyResourceByMigrationGroupsRequest() { super("apds", "2022-03-31", "ListSurveyResourceByMigrationGroups"); setUriPattern("/okss-services/migration-group/get-survey-resource"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putQueryParameter("body", body); } } @Override public Class<ListSurveyResourceByMigrationGroupsResponse> getResponseClass() { return ListSurveyResourceByMigrationGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceByMigrationGroupsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyResourceByMigrationGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyResourceByMigrationGroupsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyResourceByMigrationGroupsResponse getInstance(UnmarshallerContext context) { return ListSurveyResourceByMigrationGroupsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceConnectionsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyResourceConnectionsRequest extends RoaAcsRequest<ListSurveyResourceConnectionsResponse> { private String body; public ListSurveyResourceConnectionsRequest() { super("apds", "2022-03-31", "ListSurveyResourceConnections"); setUriPattern("/okss-services/resource-connects"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ListSurveyResourceConnectionsResponse> getResponseClass() { return ListSurveyResourceConnectionsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceConnectionsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyResourceConnectionsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyResourceConnectionsResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyResourceConnectionsResponse getInstance(UnmarshallerContext context) { return ListSurveyResourceConnectionsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceTypesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyResourceTypesRequest extends RoaAcsRequest<ListSurveyResourceTypesResponse> { private String cloudType; private String ak; private String sk; private String region; public ListSurveyResourceTypesRequest() { super("apds", "2022-03-31", "ListSurveyResourceTypes"); setUriPattern("/okss-services/winback/query-resource-type"); setMethod(MethodType.POST); } public String getCloudType() { return this.cloudType; } public void setCloudType(String cloudType) { this.cloudType = cloudType; if(cloudType != null){ putQueryParameter("cloudType", cloudType); } } public String getAk() { return this.ak; } public void setAk(String ak) { this.ak = ak; if(ak != null){ putQueryParameter("ak", ak); } } public String getSk() { return this.sk; } public void setSk(String sk) { this.sk = sk; if(sk != null){ putQueryParameter("sk", sk); } } public String getRegion() { return this.region; } public void setRegion(String region) { this.region = region; if(region != null){ putQueryParameter("region", region); } } @Override public Class<ListSurveyResourceTypesResponse> getResponseClass() { return ListSurveyResourceTypesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourceTypesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyResourceTypesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyResourceTypesResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyResourceTypesResponse getInstance(UnmarshallerContext context) { return ListSurveyResourceTypesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourcesDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class ListSurveyResourcesDetailRequest extends RoaAcsRequest<ListSurveyResourcesDetailResponse> { private String body; public ListSurveyResourcesDetailRequest() { super("apds", "2022-03-31", "ListSurveyResourcesDetail"); setUriPattern("/okss-services/survey-detail/query"); setMethod(MethodType.POST); } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("body", body); } } @Override public Class<ListSurveyResourcesDetailResponse> getResponseClass() { return ListSurveyResourcesDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/ListSurveyResourcesDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.ListSurveyResourcesDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListSurveyResourcesDetailResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public ListSurveyResourcesDetailResponse getInstance(UnmarshallerContext context) { return ListSurveyResourcesDetailResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/RecoverMigrationJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class RecoverMigrationJobRequest extends RoaAcsRequest<RecoverMigrationJobResponse> { private Integer id; public RecoverMigrationJobRequest() { super("apds", "2022-03-31", "RecoverMigrationJob"); setUriPattern("/okss-services/migration-job/recover-migration-job"); setMethod(MethodType.POST); } public Integer getId() { return this.id; } public void setId(Integer id) { this.id = id; if(id != null){ putQueryParameter("id", id.toString()); } } @Override public Class<RecoverMigrationJobResponse> getResponseClass() { return RecoverMigrationJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/RecoverMigrationJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.RecoverMigrationJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RecoverMigrationJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public RecoverMigrationJobResponse getInstance(UnmarshallerContext context) { return RecoverMigrationJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/StopSyncMigrationJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class StopSyncMigrationJobRequest extends RoaAcsRequest<StopSyncMigrationJobResponse> { private String jobType; public StopSyncMigrationJobRequest() { super("apds", "2022-03-31", "StopSyncMigrationJob"); setUriPattern("/okss-services/migration-job/unsync-migration-job"); setMethod(MethodType.POST); } public String getJobType() { return this.jobType; } public void setJobType(String jobType) { this.jobType = jobType; if(jobType != null){ putQueryParameter("jobType", jobType); } } @Override public Class<StopSyncMigrationJobResponse> getResponseClass() { return StopSyncMigrationJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/StopSyncMigrationJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.StopSyncMigrationJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopSyncMigrationJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public StopSyncMigrationJobResponse getInstance(UnmarshallerContext context) { return StopSyncMigrationJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/SyncMigrationJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.RoaAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class SyncMigrationJobRequest extends RoaAcsRequest<SyncMigrationJobResponse> { private String regions; private String jobType; public SyncMigrationJobRequest() { super("apds", "2022-03-31", "SyncMigrationJob"); setUriPattern("/okss-services/migration-job/sync-migration-job"); setMethod(MethodType.POST); } public String getRegions() { return this.regions; } public void setRegions(String regions) { this.regions = regions; if(regions != null){ putQueryParameter("regions", regions); } } public String getJobType() { return this.jobType; } public void setJobType(String jobType) { this.jobType = jobType; if(jobType != null){ putQueryParameter("jobType", jobType); } } @Override public Class<SyncMigrationJobResponse> getResponseClass() { return SyncMigrationJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/model/v20220331/SyncMigrationJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.model.v20220331; import com.aliyuncs.AcsResponse; import com.aliyuncs.apds.transform.v20220331.SyncMigrationJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SyncMigrationJobResponse extends AcsResponse { private String code; private String error; private Boolean success; private Object data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getError() { return this.error; } public void setError(String error) { this.error = error; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Object getData() { return this.data; } public void setData(Object data) { this.data = data; } @Override public SyncMigrationJobResponse getInstance(UnmarshallerContext context) { return SyncMigrationJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/CreateFileJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.CreateFileJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateFileJobResponseUnmarshaller { public static CreateFileJobResponse unmarshall(CreateFileJobResponse createFileJobResponse, UnmarshallerContext _ctx) { createFileJobResponse.setCode(_ctx.stringValue("CreateFileJobResponse.Code")); createFileJobResponse.setError(_ctx.stringValue("CreateFileJobResponse.error")); createFileJobResponse.setSuccess(_ctx.booleanValue("CreateFileJobResponse.Success")); return createFileJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/CreateMigrationGroupResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.CreateMigrationGroupResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateMigrationGroupResponseUnmarshaller { public static CreateMigrationGroupResponse unmarshall(CreateMigrationGroupResponse createMigrationGroupResponse, UnmarshallerContext _ctx) { createMigrationGroupResponse.setCode(_ctx.stringValue("CreateMigrationGroupResponse.Code")); createMigrationGroupResponse.setError(_ctx.stringValue("CreateMigrationGroupResponse.Error")); createMigrationGroupResponse.setSuccess(_ctx.booleanValue("CreateMigrationGroupResponse.Success")); return createMigrationGroupResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/CreateMigrationJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.CreateMigrationJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateMigrationJobResponseUnmarshaller { public static CreateMigrationJobResponse unmarshall(CreateMigrationJobResponse createMigrationJobResponse, UnmarshallerContext _ctx) { createMigrationJobResponse.setCode(_ctx.stringValue("CreateMigrationJobResponse.Code")); createMigrationJobResponse.setError(_ctx.stringValue("CreateMigrationJobResponse.Error")); createMigrationJobResponse.setSuccess(_ctx.booleanValue("CreateMigrationJobResponse.Success")); return createMigrationJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/CreateSurveyJobOfflineResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.CreateSurveyJobOfflineResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateSurveyJobOfflineResponseUnmarshaller { public static CreateSurveyJobOfflineResponse unmarshall(CreateSurveyJobOfflineResponse createSurveyJobOfflineResponse, UnmarshallerContext _ctx) { createSurveyJobOfflineResponse.setCode(_ctx.stringValue("CreateSurveyJobOfflineResponse.Code")); createSurveyJobOfflineResponse.setError(_ctx.stringValue("CreateSurveyJobOfflineResponse.error")); createSurveyJobOfflineResponse.setSuccess(_ctx.booleanValue("CreateSurveyJobOfflineResponse.Success")); return createSurveyJobOfflineResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/CreateSurveyJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.CreateSurveyJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class CreateSurveyJobResponseUnmarshaller { public static CreateSurveyJobResponse unmarshall(CreateSurveyJobResponse createSurveyJobResponse, UnmarshallerContext _ctx) { createSurveyJobResponse.setCode(_ctx.stringValue("CreateSurveyJobResponse.Code")); createSurveyJobResponse.setError(_ctx.stringValue("CreateSurveyJobResponse.error")); createSurveyJobResponse.setSuccess(_ctx.booleanValue("CreateSurveyJobResponse.Success")); return createSurveyJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DeleteMigrationGroupResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DeleteMigrationGroupResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteMigrationGroupResponseUnmarshaller { public static DeleteMigrationGroupResponse unmarshall(DeleteMigrationGroupResponse deleteMigrationGroupResponse, UnmarshallerContext _ctx) { deleteMigrationGroupResponse.setCode(_ctx.stringValue("DeleteMigrationGroupResponse.Code")); deleteMigrationGroupResponse.setError(_ctx.stringValue("DeleteMigrationGroupResponse.error")); deleteMigrationGroupResponse.setSuccess(_ctx.booleanValue("DeleteMigrationGroupResponse.Success")); return deleteMigrationGroupResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DeleteMigrationJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DeleteMigrationJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteMigrationJobResponseUnmarshaller { public static DeleteMigrationJobResponse unmarshall(DeleteMigrationJobResponse deleteMigrationJobResponse, UnmarshallerContext _ctx) { deleteMigrationJobResponse.setCode(_ctx.stringValue("DeleteMigrationJobResponse.Code")); deleteMigrationJobResponse.setError(_ctx.stringValue("DeleteMigrationJobResponse.error")); deleteMigrationJobResponse.setSuccess(_ctx.booleanValue("DeleteMigrationJobResponse.Success")); return deleteMigrationJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DeleteOssFileResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DeleteOssFileResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteOssFileResponseUnmarshaller { public static DeleteOssFileResponse unmarshall(DeleteOssFileResponse deleteOssFileResponse, UnmarshallerContext _ctx) { deleteOssFileResponse.setCode(_ctx.stringValue("DeleteOssFileResponse.Code")); deleteOssFileResponse.setError(_ctx.stringValue("DeleteOssFileResponse.error")); deleteOssFileResponse.setSuccess(_ctx.booleanValue("DeleteOssFileResponse.Success")); return deleteOssFileResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DeleteSurveyJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DeleteSurveyJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteSurveyJobResponseUnmarshaller { public static DeleteSurveyJobResponse unmarshall(DeleteSurveyJobResponse deleteSurveyJobResponse, UnmarshallerContext _ctx) { deleteSurveyJobResponse.setCode(_ctx.stringValue("DeleteSurveyJobResponse.Code")); deleteSurveyJobResponse.setError(_ctx.stringValue("DeleteSurveyJobResponse.error")); deleteSurveyJobResponse.setSuccess(_ctx.booleanValue("DeleteSurveyJobResponse.Success")); return deleteSurveyJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DeleteSurveyResourcesResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DeleteSurveyResourcesResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DeleteSurveyResourcesResponseUnmarshaller { public static DeleteSurveyResourcesResponse unmarshall(DeleteSurveyResourcesResponse deleteSurveyResourcesResponse, UnmarshallerContext _ctx) { deleteSurveyResourcesResponse.setCode(_ctx.stringValue("DeleteSurveyResourcesResponse.Code")); deleteSurveyResourcesResponse.setError(_ctx.stringValue("DeleteSurveyResourcesResponse.Error")); deleteSurveyResourcesResponse.setSuccess(_ctx.booleanValue("DeleteSurveyResourcesResponse.Success")); return deleteSurveyResourcesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeMigrationJobConfigResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeMigrationJobConfigResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeMigrationJobConfigResponseUnmarshaller { public static DescribeMigrationJobConfigResponse unmarshall(DescribeMigrationJobConfigResponse describeMigrationJobConfigResponse, UnmarshallerContext _ctx) { describeMigrationJobConfigResponse.setCode(_ctx.stringValue("DescribeMigrationJobConfigResponse.Code")); describeMigrationJobConfigResponse.setError(_ctx.stringValue("DescribeMigrationJobConfigResponse.error")); describeMigrationJobConfigResponse.setSuccess(_ctx.booleanValue("DescribeMigrationJobConfigResponse.Success")); return describeMigrationJobConfigResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeMigrationJobCountResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeMigrationJobCountResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeMigrationJobCountResponseUnmarshaller { public static DescribeMigrationJobCountResponse unmarshall(DescribeMigrationJobCountResponse describeMigrationJobCountResponse, UnmarshallerContext _ctx) { describeMigrationJobCountResponse.setCode(_ctx.stringValue("DescribeMigrationJobCountResponse.Code")); describeMigrationJobCountResponse.setError(_ctx.stringValue("DescribeMigrationJobCountResponse.error")); describeMigrationJobCountResponse.setSuccess(_ctx.booleanValue("DescribeMigrationJobCountResponse.Success")); return describeMigrationJobCountResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeOssStsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeOssStsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeOssStsResponseUnmarshaller { public static DescribeOssStsResponse unmarshall(DescribeOssStsResponse describeOssStsResponse, UnmarshallerContext _ctx) { describeOssStsResponse.setCode(_ctx.stringValue("DescribeOssStsResponse.Code")); describeOssStsResponse.setError(_ctx.stringValue("DescribeOssStsResponse.error")); describeOssStsResponse.setSuccess(_ctx.booleanValue("DescribeOssStsResponse.Success")); return describeOssStsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSummaryByStatusAndGroupResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSummaryByStatusAndGroupResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSummaryByStatusAndGroupResponseUnmarshaller { public static DescribeSummaryByStatusAndGroupResponse unmarshall(DescribeSummaryByStatusAndGroupResponse describeSummaryByStatusAndGroupResponse, UnmarshallerContext _ctx) { describeSummaryByStatusAndGroupResponse.setCode(_ctx.stringValue("DescribeSummaryByStatusAndGroupResponse.Code")); describeSummaryByStatusAndGroupResponse.setError(_ctx.stringValue("DescribeSummaryByStatusAndGroupResponse.Error")); describeSummaryByStatusAndGroupResponse.setSuccess(_ctx.booleanValue("DescribeSummaryByStatusAndGroupResponse.Success")); return describeSummaryByStatusAndGroupResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSummaryByStatusResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSummaryByStatusResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSummaryByStatusResponseUnmarshaller { public static DescribeSummaryByStatusResponse unmarshall(DescribeSummaryByStatusResponse describeSummaryByStatusResponse, UnmarshallerContext _ctx) { describeSummaryByStatusResponse.setCode(_ctx.stringValue("DescribeSummaryByStatusResponse.Code")); describeSummaryByStatusResponse.setError(_ctx.stringValue("DescribeSummaryByStatusResponse.Error")); describeSummaryByStatusResponse.setSuccess(_ctx.booleanValue("DescribeSummaryByStatusResponse.Success")); return describeSummaryByStatusResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSurveyJobCountResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSurveyJobCountResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSurveyJobCountResponseUnmarshaller { public static DescribeSurveyJobCountResponse unmarshall(DescribeSurveyJobCountResponse describeSurveyJobCountResponse, UnmarshallerContext _ctx) { describeSurveyJobCountResponse.setCode(_ctx.stringValue("DescribeSurveyJobCountResponse.Code")); describeSurveyJobCountResponse.setError(_ctx.stringValue("DescribeSurveyJobCountResponse.error")); describeSurveyJobCountResponse.setSuccess(_ctx.booleanValue("DescribeSurveyJobCountResponse.Success")); return describeSurveyJobCountResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSurveyJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSurveyJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSurveyJobResponseUnmarshaller { public static DescribeSurveyJobResponse unmarshall(DescribeSurveyJobResponse describeSurveyJobResponse, UnmarshallerContext _ctx) { describeSurveyJobResponse.setCode(_ctx.stringValue("DescribeSurveyJobResponse.Code")); describeSurveyJobResponse.setError(_ctx.stringValue("DescribeSurveyJobResponse.error")); describeSurveyJobResponse.setSuccess(_ctx.booleanValue("DescribeSurveyJobResponse.Success")); return describeSurveyJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSurveyResourceTagResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSurveyResourceTagResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSurveyResourceTagResponseUnmarshaller { public static DescribeSurveyResourceTagResponse unmarshall(DescribeSurveyResourceTagResponse describeSurveyResourceTagResponse, UnmarshallerContext _ctx) { describeSurveyResourceTagResponse.setCode(_ctx.stringValue("DescribeSurveyResourceTagResponse.Code")); describeSurveyResourceTagResponse.setError(_ctx.stringValue("DescribeSurveyResourceTagResponse.Error")); describeSurveyResourceTagResponse.setSuccess(_ctx.booleanValue("DescribeSurveyResourceTagResponse.Success")); return describeSurveyResourceTagResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/DescribeSurveyTemplateResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.DescribeSurveyTemplateResponse; import com.aliyuncs.transform.UnmarshallerContext; public class DescribeSurveyTemplateResponseUnmarshaller { public static DescribeSurveyTemplateResponse unmarshall(DescribeSurveyTemplateResponse describeSurveyTemplateResponse, UnmarshallerContext _ctx) { describeSurveyTemplateResponse.setCode(_ctx.stringValue("DescribeSurveyTemplateResponse.Code")); describeSurveyTemplateResponse.setError(_ctx.stringValue("DescribeSurveyTemplateResponse.error")); describeSurveyTemplateResponse.setSuccess(_ctx.booleanValue("DescribeSurveyTemplateResponse.Success")); return describeSurveyTemplateResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListMigrationJobsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListMigrationJobsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListMigrationJobsResponseUnmarshaller { public static ListMigrationJobsResponse unmarshall(ListMigrationJobsResponse listMigrationJobsResponse, UnmarshallerContext _ctx) { listMigrationJobsResponse.setCode(_ctx.stringValue("ListMigrationJobsResponse.Code")); listMigrationJobsResponse.setError(_ctx.stringValue("ListMigrationJobsResponse.error")); listMigrationJobsResponse.setSuccess(_ctx.booleanValue("ListMigrationJobsResponse.Success")); return listMigrationJobsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListRegionsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListRegionsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListRegionsResponseUnmarshaller { public static ListRegionsResponse unmarshall(ListRegionsResponse listRegionsResponse, UnmarshallerContext _ctx) { listRegionsResponse.setCode(_ctx.stringValue("ListRegionsResponse.Code")); listRegionsResponse.setError(_ctx.stringValue("ListRegionsResponse.error")); listRegionsResponse.setSuccess(_ctx.booleanValue("ListRegionsResponse.Success")); return listRegionsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyJobDownLoadJobsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyJobDownLoadJobsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyJobDownLoadJobsResponseUnmarshaller { public static ListSurveyJobDownLoadJobsResponse unmarshall(ListSurveyJobDownLoadJobsResponse listSurveyJobDownLoadJobsResponse, UnmarshallerContext _ctx) { listSurveyJobDownLoadJobsResponse.setCode(_ctx.stringValue("ListSurveyJobDownLoadJobsResponse.Code")); listSurveyJobDownLoadJobsResponse.setError(_ctx.stringValue("ListSurveyJobDownLoadJobsResponse.error")); listSurveyJobDownLoadJobsResponse.setSuccess(_ctx.booleanValue("ListSurveyJobDownLoadJobsResponse.Success")); return listSurveyJobDownLoadJobsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyJobsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyJobsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyJobsResponseUnmarshaller { public static ListSurveyJobsResponse unmarshall(ListSurveyJobsResponse listSurveyJobsResponse, UnmarshallerContext _ctx) { listSurveyJobsResponse.setCode(_ctx.stringValue("ListSurveyJobsResponse.Code")); listSurveyJobsResponse.setError(_ctx.stringValue("ListSurveyJobsResponse.error")); listSurveyJobsResponse.setSuccess(_ctx.booleanValue("ListSurveyJobsResponse.Success")); return listSurveyJobsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyResourceByMigrationGroupsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyResourceByMigrationGroupsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyResourceByMigrationGroupsResponseUnmarshaller { public static ListSurveyResourceByMigrationGroupsResponse unmarshall(ListSurveyResourceByMigrationGroupsResponse listSurveyResourceByMigrationGroupsResponse, UnmarshallerContext _ctx) { listSurveyResourceByMigrationGroupsResponse.setCode(_ctx.stringValue("ListSurveyResourceByMigrationGroupsResponse.Code")); listSurveyResourceByMigrationGroupsResponse.setError(_ctx.stringValue("ListSurveyResourceByMigrationGroupsResponse.Error")); listSurveyResourceByMigrationGroupsResponse.setSuccess(_ctx.booleanValue("ListSurveyResourceByMigrationGroupsResponse.Success")); return listSurveyResourceByMigrationGroupsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyResourceConnectionsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyResourceConnectionsResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyResourceConnectionsResponseUnmarshaller { public static ListSurveyResourceConnectionsResponse unmarshall(ListSurveyResourceConnectionsResponse listSurveyResourceConnectionsResponse, UnmarshallerContext _ctx) { listSurveyResourceConnectionsResponse.setCode(_ctx.stringValue("ListSurveyResourceConnectionsResponse.Code")); listSurveyResourceConnectionsResponse.setError(_ctx.stringValue("ListSurveyResourceConnectionsResponse.Error")); listSurveyResourceConnectionsResponse.setSuccess(_ctx.booleanValue("ListSurveyResourceConnectionsResponse.Success")); return listSurveyResourceConnectionsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyResourceTypesResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyResourceTypesResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyResourceTypesResponseUnmarshaller { public static ListSurveyResourceTypesResponse unmarshall(ListSurveyResourceTypesResponse listSurveyResourceTypesResponse, UnmarshallerContext _ctx) { listSurveyResourceTypesResponse.setCode(_ctx.stringValue("ListSurveyResourceTypesResponse.Code")); listSurveyResourceTypesResponse.setError(_ctx.stringValue("ListSurveyResourceTypesResponse.error")); listSurveyResourceTypesResponse.setSuccess(_ctx.booleanValue("ListSurveyResourceTypesResponse.Success")); return listSurveyResourceTypesResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/ListSurveyResourcesDetailResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.ListSurveyResourcesDetailResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ListSurveyResourcesDetailResponseUnmarshaller { public static ListSurveyResourcesDetailResponse unmarshall(ListSurveyResourcesDetailResponse listSurveyResourcesDetailResponse, UnmarshallerContext _ctx) { listSurveyResourcesDetailResponse.setCode(_ctx.stringValue("ListSurveyResourcesDetailResponse.Code")); listSurveyResourcesDetailResponse.setError(_ctx.stringValue("ListSurveyResourcesDetailResponse.error")); listSurveyResourcesDetailResponse.setSuccess(_ctx.booleanValue("ListSurveyResourcesDetailResponse.Success")); return listSurveyResourcesDetailResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/RecoverMigrationJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.RecoverMigrationJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class RecoverMigrationJobResponseUnmarshaller { public static RecoverMigrationJobResponse unmarshall(RecoverMigrationJobResponse recoverMigrationJobResponse, UnmarshallerContext _ctx) { recoverMigrationJobResponse.setCode(_ctx.stringValue("RecoverMigrationJobResponse.Code")); recoverMigrationJobResponse.setError(_ctx.stringValue("RecoverMigrationJobResponse.error")); recoverMigrationJobResponse.setSuccess(_ctx.booleanValue("RecoverMigrationJobResponse.Success")); return recoverMigrationJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/StopSyncMigrationJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.StopSyncMigrationJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class StopSyncMigrationJobResponseUnmarshaller { public static StopSyncMigrationJobResponse unmarshall(StopSyncMigrationJobResponse stopSyncMigrationJobResponse, UnmarshallerContext _ctx) { stopSyncMigrationJobResponse.setCode(_ctx.stringValue("StopSyncMigrationJobResponse.Code")); stopSyncMigrationJobResponse.setError(_ctx.stringValue("StopSyncMigrationJobResponse.error")); stopSyncMigrationJobResponse.setSuccess(_ctx.booleanValue("StopSyncMigrationJobResponse.Success")); return stopSyncMigrationJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform
java-sources/com/aliyun/aliyun-java-sdk-apds/1.0.0/com/aliyuncs/apds/transform/v20220331/SyncMigrationJobResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.apds.transform.v20220331; import com.aliyuncs.apds.model.v20220331.SyncMigrationJobResponse; import com.aliyuncs.transform.UnmarshallerContext; public class SyncMigrationJobResponseUnmarshaller { public static SyncMigrationJobResponse unmarshall(SyncMigrationJobResponse syncMigrationJobResponse, UnmarshallerContext _ctx) { syncMigrationJobResponse.setCode(_ctx.stringValue("SyncMigrationJobResponse.Code")); syncMigrationJobResponse.setError(_ctx.stringValue("SyncMigrationJobResponse.error")); syncMigrationJobResponse.setSuccess(_ctx.booleanValue("SyncMigrationJobResponse.Success")); return syncMigrationJobResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/Endpoint.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice; import java.util.HashMap; public class Endpoint { public static HashMap<String, String> endpointMap = new HashMap<String, String>() { { put("cn-shenzhen", "appms.aliyuncs.com"); put("cn-beijing", "appms.aliyuncs.com"); put("ap-south-1", "appms.aliyuncs.com"); put("eu-west-1", "appms.aliyuncs.com"); put("ap-northeast-1", "appms.aliyuncs.com"); put("me-east-1", "appms.aliyuncs.com"); put("cn-chengdu", "appms.aliyuncs.com"); put("cn-qingdao", "appms.aliyuncs.com"); put("cn-shanghai", "appms.aliyuncs.com"); put("cn-hongkong", "appms.aliyuncs.com"); put("ap-southeast-1", "appms.aliyuncs.com"); put("ap-southeast-2", "appms.aliyuncs.com"); put("ap-southeast-3", "appms.aliyuncs.com"); put("eu-central-1", "appms.aliyuncs.com"); put("cn-huhehaote", "appms.aliyuncs.com"); put("ap-southeast-5", "appms.aliyuncs.com"); put("us-east-1", "appms.aliyuncs.com"); put("cn-zhangjiakou", "appms.aliyuncs.com"); put("us-west-1", "appms.aliyuncs.com"); put("cn-hangzhou", "appms.aliyuncs.com"); } }; public static String endpointRegionalType = "regional"; }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/GetMessagesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class GetMessagesRequest extends RpcAcsRequest<GetMessagesResponse> { public GetMessagesRequest() { super("AppMallsService", "2018-02-24", "GetMessages"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private String topic; private String paramsJson; public String getTopic() { return this.topic; } public void setTopic(String topic) { this.topic = topic; if(topic != null){ putQueryParameter("Topic", topic); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<GetMessagesResponse> getResponseClass() { return GetMessagesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/GetMessagesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.GetMessagesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMessagesResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private List<BizMessagesItem> bizMessages; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<BizMessagesItem> getBizMessages() { return this.bizMessages; } public void setBizMessages(List<BizMessagesItem> bizMessages) { this.bizMessages = bizMessages; } public static class BizMessagesItem { private String pubTime; private String topic; private Long dataId; private String contentMapJson; public String getPubTime() { return this.pubTime; } public void setPubTime(String pubTime) { this.pubTime = pubTime; } public String getTopic() { return this.topic; } public void setTopic(String topic) { this.topic = topic; } public Long getDataId() { return this.dataId; } public void setDataId(Long dataId) { this.dataId = dataId; } public String getContentMapJson() { return this.contentMapJson; } public void setContentMapJson(String contentMapJson) { this.contentMapJson = contentMapJson; } } @Override public GetMessagesResponse getInstance(UnmarshallerContext context) { return GetMessagesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/RemoveMessagesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class RemoveMessagesRequest extends RpcAcsRequest<RemoveMessagesResponse> { public RemoveMessagesRequest() { super("AppMallsService", "2018-02-24", "RemoveMessages"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private String msgIds; private String paramsJson; public String getMsgIds() { return this.msgIds; } public void setMsgIds(String msgIds) { this.msgIds = msgIds; if(msgIds != null){ putQueryParameter("MsgIds", msgIds); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<RemoveMessagesResponse> getResponseClass() { return RemoveMessagesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/RemoveMessagesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.RemoveMessagesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveMessagesResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private String returnCode; private String returnMessage; private String returnValue; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getReturnCode() { return this.returnCode; } public void setReturnCode(String returnCode) { this.returnCode = returnCode; } public String getReturnMessage() { return this.returnMessage; } public void setReturnMessage(String returnMessage) { this.returnMessage = returnMessage; } public String getReturnValue() { return this.returnValue; } public void setReturnValue(String returnValue) { this.returnValue = returnValue; } @Override public RemoveMessagesResponse getInstance(UnmarshallerContext context) { return RemoveMessagesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetCinemasRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetCinemasRequest extends RpcAcsRequest<TaobaoFilmGetCinemasResponse> { public TaobaoFilmGetCinemasRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetCinemas"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long pageIndex; private String paramsJson; public Long getPageIndex() { return this.pageIndex; } public void setPageIndex(Long pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetCinemasResponse> getResponseClass() { return TaobaoFilmGetCinemasResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetCinemasResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetCinemasResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetCinemasResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private Long totalCount; private String logsId; private String requestId; private List<CinemasItem> cinemas; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<CinemasItem> getCinemas() { return this.cinemas; } public void setCinemas(List<CinemasItem> cinemas) { this.cinemas = cinemas; } public static class CinemasItem { private String address; private String cinemaName; private Long cityId; private Long id; private String latitude; private String longitude; private String phone; private String regionName; private Long scheduleCloseTime; private String standardId; public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getCinemaName() { return this.cinemaName; } public void setCinemaName(String cinemaName) { this.cinemaName = cinemaName; } public Long getCityId() { return this.cityId; } public void setCityId(Long cityId) { this.cityId = cityId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getLatitude() { return this.latitude; } public void setLatitude(String latitude) { this.latitude = latitude; } public String getLongitude() { return this.longitude; } public void setLongitude(String longitude) { this.longitude = longitude; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } public String getRegionName() { return this.regionName; } public void setRegionName(String regionName) { this.regionName = regionName; } public Long getScheduleCloseTime() { return this.scheduleCloseTime; } public void setScheduleCloseTime(Long scheduleCloseTime) { this.scheduleCloseTime = scheduleCloseTime; } public String getStandardId() { return this.standardId; } public void setStandardId(String standardId) { this.standardId = standardId; } } @Override public TaobaoFilmGetCinemasResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetCinemasResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetHotShowsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetHotShowsRequest extends RpcAcsRequest<TaobaoFilmGetHotShowsResponse> { public TaobaoFilmGetHotShowsRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetHotShows"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long cityCode; private String paramsJson; public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; if(cityCode != null){ putQueryParameter("CityCode", cityCode.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetHotShowsResponse> getResponseClass() { return TaobaoFilmGetHotShowsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetHotShowsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetHotShowsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetHotShowsResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private List<ShowsItem> shows; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ShowsItem> getShows() { return this.shows; } public void setShows(List<ShowsItem> shows) { this.shows = shows; } public static class ShowsItem { private String backgroundPicture; private String country; private String description; private String director; private Long duration; private String highlight; private Long id; private String language; private String leadingRole; private String openDay; private String openTime; private String poster; private String remark; private String showMark; private String showName; private String showNameEn; private String type; private List<String> showVersionList; private List<String> trailerList; public String getBackgroundPicture() { return this.backgroundPicture; } public void setBackgroundPicture(String backgroundPicture) { this.backgroundPicture = backgroundPicture; } public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDirector() { return this.director; } public void setDirector(String director) { this.director = director; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public String getHighlight() { return this.highlight; } public void setHighlight(String highlight) { this.highlight = highlight; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public String getLeadingRole() { return this.leadingRole; } public void setLeadingRole(String leadingRole) { this.leadingRole = leadingRole; } public String getOpenDay() { return this.openDay; } public void setOpenDay(String openDay) { this.openDay = openDay; } public String getOpenTime() { return this.openTime; } public void setOpenTime(String openTime) { this.openTime = openTime; } public String getPoster() { return this.poster; } public void setPoster(String poster) { this.poster = poster; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getShowMark() { return this.showMark; } public void setShowMark(String showMark) { this.showMark = showMark; } public String getShowName() { return this.showName; } public void setShowName(String showName) { this.showName = showName; } public String getShowNameEn() { return this.showNameEn; } public void setShowNameEn(String showNameEn) { this.showNameEn = showNameEn; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public List<String> getShowVersionList() { return this.showVersionList; } public void setShowVersionList(List<String> showVersionList) { this.showVersionList = showVersionList; } public List<String> getTrailerList() { return this.trailerList; } public void setTrailerList(List<String> trailerList) { this.trailerList = trailerList; } } @Override public TaobaoFilmGetHotShowsResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetHotShowsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetRegionListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetRegionListRequest extends RpcAcsRequest<TaobaoFilmGetRegionListResponse> { public TaobaoFilmGetRegionListRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetRegionList"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private String paramsJson; public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetRegionListResponse> getResponseClass() { return TaobaoFilmGetRegionListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetRegionListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetRegionListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetRegionListResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private List<RegionsItem> regions; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<RegionsItem> getRegions() { return this.regions; } public void setRegions(List<RegionsItem> regions) { this.regions = regions; } public static class RegionsItem { private Long cityCode; private Long id; private Long parentId; private String pinYin; private String regionName; public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getParentId() { return this.parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getPinYin() { return this.pinYin; } public void setPinYin(String pinYin) { this.pinYin = pinYin; } public String getRegionName() { return this.regionName; } public void setRegionName(String regionName) { this.regionName = regionName; } } @Override public TaobaoFilmGetRegionListResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetRegionListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSchedulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetSchedulesRequest extends RpcAcsRequest<TaobaoFilmGetSchedulesResponse> { public TaobaoFilmGetSchedulesRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetSchedules"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long cinemaId; private String paramsJson; public Long getCinemaId() { return this.cinemaId; } public void setCinemaId(Long cinemaId) { this.cinemaId = cinemaId; if(cinemaId != null){ putQueryParameter("CinemaId", cinemaId.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetSchedulesResponse> getResponseClass() { return TaobaoFilmGetSchedulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSchedulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetSchedulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetSchedulesResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private List<SchedulesItem> schedules; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<SchedulesItem> getSchedules() { return this.schedules; } public void setSchedules(List<SchedulesItem> schedules) { this.schedules = schedules; } public static class SchedulesItem { private Long cinemaId; private String closeTime; private String hallName; private Long id; private Boolean isExpired; private Long maxCanBuy; private Long price; private String scheduleArea; private String sectionId; private Long serviceFee; private String showDate; private Long showId; private String showTime; private String showVersion; private String hallId; public Long getCinemaId() { return this.cinemaId; } public void setCinemaId(Long cinemaId) { this.cinemaId = cinemaId; } public String getCloseTime() { return this.closeTime; } public void setCloseTime(String closeTime) { this.closeTime = closeTime; } public String getHallName() { return this.hallName; } public void setHallName(String hallName) { this.hallName = hallName; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Boolean getIsExpired() { return this.isExpired; } public void setIsExpired(Boolean isExpired) { this.isExpired = isExpired; } public Long getMaxCanBuy() { return this.maxCanBuy; } public void setMaxCanBuy(Long maxCanBuy) { this.maxCanBuy = maxCanBuy; } public Long getPrice() { return this.price; } public void setPrice(Long price) { this.price = price; } public String getScheduleArea() { return this.scheduleArea; } public void setScheduleArea(String scheduleArea) { this.scheduleArea = scheduleArea; } public String getSectionId() { return this.sectionId; } public void setSectionId(String sectionId) { this.sectionId = sectionId; } public Long getServiceFee() { return this.serviceFee; } public void setServiceFee(Long serviceFee) { this.serviceFee = serviceFee; } public String getShowDate() { return this.showDate; } public void setShowDate(String showDate) { this.showDate = showDate; } public Long getShowId() { return this.showId; } public void setShowId(Long showId) { this.showId = showId; } public String getShowTime() { return this.showTime; } public void setShowTime(String showTime) { this.showTime = showTime; } public String getShowVersion() { return this.showVersion; } public void setShowVersion(String showVersion) { this.showVersion = showVersion; } public String getHallId() { return this.hallId; } public void setHallId(String hallId) { this.hallId = hallId; } } @Override public TaobaoFilmGetSchedulesResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetSchedulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSeatsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetSeatsRequest extends RpcAcsRequest<TaobaoFilmGetSeatsResponse> { public TaobaoFilmGetSeatsRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetSeats"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long scheduleId; private String paramsJson; public Long getScheduleId() { return this.scheduleId; } public void setScheduleId(Long scheduleId) { this.scheduleId = scheduleId; if(scheduleId != null){ putQueryParameter("ScheduleId", scheduleId.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetSeatsResponse> getResponseClass() { return TaobaoFilmGetSeatsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSeatsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetSeatsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetSeatsResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private SeatMap seatMap; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public SeatMap getSeatMap() { return this.seatMap; } public void setSeatMap(SeatMap seatMap) { this.seatMap = seatMap; } public static class SeatMap { private Long maxCanBuy; private Long maxColumn; private Long maxLeftPx; private Long maxRow; private Long maxTopPx; private Long minColumn; private Long minLeftPx; private Long minRow; private Long minTopPx; private String notice; private Boolean regular; private Long seatCount; private Long soldCount; private String tipMessage; private List<SeatsItem> seats; public Long getMaxCanBuy() { return this.maxCanBuy; } public void setMaxCanBuy(Long maxCanBuy) { this.maxCanBuy = maxCanBuy; } public Long getMaxColumn() { return this.maxColumn; } public void setMaxColumn(Long maxColumn) { this.maxColumn = maxColumn; } public Long getMaxLeftPx() { return this.maxLeftPx; } public void setMaxLeftPx(Long maxLeftPx) { this.maxLeftPx = maxLeftPx; } public Long getMaxRow() { return this.maxRow; } public void setMaxRow(Long maxRow) { this.maxRow = maxRow; } public Long getMaxTopPx() { return this.maxTopPx; } public void setMaxTopPx(Long maxTopPx) { this.maxTopPx = maxTopPx; } public Long getMinColumn() { return this.minColumn; } public void setMinColumn(Long minColumn) { this.minColumn = minColumn; } public Long getMinLeftPx() { return this.minLeftPx; } public void setMinLeftPx(Long minLeftPx) { this.minLeftPx = minLeftPx; } public Long getMinRow() { return this.minRow; } public void setMinRow(Long minRow) { this.minRow = minRow; } public Long getMinTopPx() { return this.minTopPx; } public void setMinTopPx(Long minTopPx) { this.minTopPx = minTopPx; } public String getNotice() { return this.notice; } public void setNotice(String notice) { this.notice = notice; } public Boolean getRegular() { return this.regular; } public void setRegular(Boolean regular) { this.regular = regular; } public Long getSeatCount() { return this.seatCount; } public void setSeatCount(Long seatCount) { this.seatCount = seatCount; } public Long getSoldCount() { return this.soldCount; } public void setSoldCount(Long soldCount) { this.soldCount = soldCount; } public String getTipMessage() { return this.tipMessage; } public void setTipMessage(String tipMessage) { this.tipMessage = tipMessage; } public List<SeatsItem> getSeats() { return this.seats; } public void setSeats(List<SeatsItem> seats) { this.seats = seats; } public static class SeatsItem { private String area; private Long column; private String extId; private Long flag; private Long leftPx; private String name; private Long row; private String rowName; private Long status; private Long topPx; public String getArea() { return this.area; } public void setArea(String area) { this.area = area; } public Long getColumn() { return this.column; } public void setColumn(Long column) { this.column = column; } public String getExtId() { return this.extId; } public void setExtId(String extId) { this.extId = extId; } public Long getFlag() { return this.flag; } public void setFlag(Long flag) { this.flag = flag; } public Long getLeftPx() { return this.leftPx; } public void setLeftPx(Long leftPx) { this.leftPx = leftPx; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Long getRow() { return this.row; } public void setRow(Long row) { this.row = row; } public String getRowName() { return this.rowName; } public void setRowName(String rowName) { this.rowName = rowName; } public Long getStatus() { return this.status; } public void setStatus(Long status) { this.status = status; } public Long getTopPx() { return this.topPx; } public void setTopPx(Long topPx) { this.topPx = topPx; } } } @Override public TaobaoFilmGetSeatsResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetSeatsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetShowCommentsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetShowCommentsRequest extends RpcAcsRequest<TaobaoFilmGetShowCommentsResponse> { public TaobaoFilmGetShowCommentsRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetShowComments"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long showId; private Long pageIndex; private String paramsJson; public Long getShowId() { return this.showId; } public void setShowId(Long showId) { this.showId = showId; if(showId != null){ putQueryParameter("ShowId", showId.toString()); } } public Long getPageIndex() { return this.pageIndex; } public void setPageIndex(Long pageIndex) { this.pageIndex = pageIndex; if(pageIndex != null){ putQueryParameter("PageIndex", pageIndex.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetShowCommentsResponse> getResponseClass() { return TaobaoFilmGetShowCommentsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetShowCommentsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetShowCommentsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetShowCommentsResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private Long count; private String logsId; private String requestId; private List<CommentListItem> commentList; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<CommentListItem> getCommentList() { return this.commentList; } public void setCommentList(List<CommentListItem> commentList) { this.commentList = commentList; } public static class CommentListItem { private String commentTime; private String content; private Long favorCount; private Long id; private String nickName; private Long remark; private Long showId; private String subject; public String getCommentTime() { return this.commentTime; } public void setCommentTime(String commentTime) { this.commentTime = commentTime; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public Long getFavorCount() { return this.favorCount; } public void setFavorCount(Long favorCount) { this.favorCount = favorCount; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public Long getRemark() { return this.remark; } public void setRemark(Long remark) { this.remark = remark; } public Long getShowId() { return this.showId; } public void setShowId(Long showId) { this.showId = showId; } public String getSubject() { return this.subject; } public void setSubject(String subject) { this.subject = subject; } } @Override public TaobaoFilmGetShowCommentsResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetShowCommentsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSoonShowsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmGetSoonShowsRequest extends RpcAcsRequest<TaobaoFilmGetSoonShowsResponse> { public TaobaoFilmGetSoonShowsRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmGetSoonShows"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long cityCode; private String paramsJson; public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; if(cityCode != null){ putQueryParameter("CityCode", cityCode.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmGetSoonShowsResponse> getResponseClass() { return TaobaoFilmGetSoonShowsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmGetSoonShowsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmGetSoonShowsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmGetSoonShowsResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String logsId; private String requestId; private List<ShowsItem> shows; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<ShowsItem> getShows() { return this.shows; } public void setShows(List<ShowsItem> shows) { this.shows = shows; } public static class ShowsItem { private String backgroundPicture; private String country; private String description; private String director; private Long duration; private String highlight; private Long id; private String language; private String leadingRole; private String openDay; private String openTime; private String poster; private String remark; private String showMark; private String showName; private String showNameEn; private String type; private List<String> showVersionList; private List<String> trailerList; public String getBackgroundPicture() { return this.backgroundPicture; } public void setBackgroundPicture(String backgroundPicture) { this.backgroundPicture = backgroundPicture; } public String getCountry() { return this.country; } public void setCountry(String country) { this.country = country; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getDirector() { return this.director; } public void setDirector(String director) { this.director = director; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public String getHighlight() { return this.highlight; } public void setHighlight(String highlight) { this.highlight = highlight; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public String getLeadingRole() { return this.leadingRole; } public void setLeadingRole(String leadingRole) { this.leadingRole = leadingRole; } public String getOpenDay() { return this.openDay; } public void setOpenDay(String openDay) { this.openDay = openDay; } public String getOpenTime() { return this.openTime; } public void setOpenTime(String openTime) { this.openTime = openTime; } public String getPoster() { return this.poster; } public void setPoster(String poster) { this.poster = poster; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getShowMark() { return this.showMark; } public void setShowMark(String showMark) { this.showMark = showMark; } public String getShowName() { return this.showName; } public void setShowName(String showName) { this.showName = showName; } public String getShowNameEn() { return this.showNameEn; } public void setShowNameEn(String showNameEn) { this.showNameEn = showNameEn; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public List<String> getShowVersionList() { return this.showVersionList; } public void setShowVersionList(List<String> showVersionList) { this.showVersionList = showVersionList; } public List<String> getTrailerList() { return this.trailerList; } public void setTrailerList(List<String> trailerList) { this.trailerList = trailerList; } } @Override public TaobaoFilmGetSoonShowsResponse getInstance(UnmarshallerContext context) { return TaobaoFilmGetSoonShowsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmIssueOrderRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmIssueOrderRequest extends RpcAcsRequest<TaobaoFilmIssueOrderResponse> { public TaobaoFilmIssueOrderRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmIssueOrder"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private String lockSeatApplyKey; private String extUserId; private String extOrderId; private Long totalPrice; private String paramsJson; public String getLockSeatApplyKey() { return this.lockSeatApplyKey; } public void setLockSeatApplyKey(String lockSeatApplyKey) { this.lockSeatApplyKey = lockSeatApplyKey; if(lockSeatApplyKey != null){ putQueryParameter("LockSeatApplyKey", lockSeatApplyKey); } } public String getExtUserId() { return this.extUserId; } public void setExtUserId(String extUserId) { this.extUserId = extUserId; if(extUserId != null){ putQueryParameter("ExtUserId", extUserId); } } public String getExtOrderId() { return this.extOrderId; } public void setExtOrderId(String extOrderId) { this.extOrderId = extOrderId; if(extOrderId != null){ putQueryParameter("ExtOrderId", extOrderId); } } public Long getTotalPrice() { return this.totalPrice; } public void setTotalPrice(Long totalPrice) { this.totalPrice = totalPrice; if(totalPrice != null){ putQueryParameter("TotalPrice", totalPrice.toString()); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmIssueOrderResponse> getResponseClass() { return TaobaoFilmIssueOrderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmIssueOrderResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.AcsResponse; import com.aliyuncs.appmallsservice.transform.v20180224.TaobaoFilmIssueOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TaobaoFilmIssueOrderResponse extends AcsResponse { private String errorCode; private String msg; private String subCode; private String subMsg; private String message; private String status; private String tbOrderId; private String ticketContents; private String logsId; private String requestId; public String getErrorCode() { return this.errorCode; } public void setErrorCode(String errorCode) { this.errorCode = errorCode; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getSubCode() { return this.subCode; } public void setSubCode(String subCode) { this.subCode = subCode; } public String getSubMsg() { return this.subMsg; } public void setSubMsg(String subMsg) { this.subMsg = subMsg; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getTbOrderId() { return this.tbOrderId; } public void setTbOrderId(String tbOrderId) { this.tbOrderId = tbOrderId; } public String getTicketContents() { return this.ticketContents; } public void setTicketContents(String ticketContents) { this.ticketContents = ticketContents; } public String getLogsId() { return this.logsId; } public void setLogsId(String logsId) { this.logsId = logsId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public TaobaoFilmIssueOrderResponse getInstance(UnmarshallerContext context) { return TaobaoFilmIssueOrderResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model
java-sources/com/aliyun/aliyun-java-sdk-appmallsservice/1.1.2/com/aliyuncs/appmallsservice/model/v20180224/TaobaoFilmLockSeatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.appmallsservice.model.v20180224; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.appmallsservice.Endpoint; /** * @author auto create * @version */ public class TaobaoFilmLockSeatRequest extends RpcAcsRequest<TaobaoFilmLockSeatResponse> { public TaobaoFilmLockSeatRequest() { super("AppMallsService", "2018-02-24", "TaobaoFilmLockSeat"); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } private Long scheduleId; private String seatIds; private String seatNames; private String mobile; private String extUserId; private String paramsJson; public Long getScheduleId() { return this.scheduleId; } public void setScheduleId(Long scheduleId) { this.scheduleId = scheduleId; if(scheduleId != null){ putQueryParameter("ScheduleId", scheduleId.toString()); } } public String getSeatIds() { return this.seatIds; } public void setSeatIds(String seatIds) { this.seatIds = seatIds; if(seatIds != null){ putQueryParameter("SeatIds", seatIds); } } public String getSeatNames() { return this.seatNames; } public void setSeatNames(String seatNames) { this.seatNames = seatNames; if(seatNames != null){ putQueryParameter("SeatNames", seatNames); } } public String getMobile() { return this.mobile; } public void setMobile(String mobile) { this.mobile = mobile; if(mobile != null){ putQueryParameter("Mobile", mobile); } } public String getExtUserId() { return this.extUserId; } public void setExtUserId(String extUserId) { this.extUserId = extUserId; if(extUserId != null){ putQueryParameter("ExtUserId", extUserId); } } public String getParamsJson() { return this.paramsJson; } public void setParamsJson(String paramsJson) { this.paramsJson = paramsJson; if(paramsJson != null){ putQueryParameter("ParamsJson", paramsJson); } } @Override public Class<TaobaoFilmLockSeatResponse> getResponseClass() { return TaobaoFilmLockSeatResponse.class; } }