All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.dms_enterprise.model.v20181101.GetOwnerApplyOrderDetailResponse Maven / Gradle / Ivy

/*
 * 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.dms_enterprise.model.v20181101;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.dms_enterprise.transform.v20181101.GetOwnerApplyOrderDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class GetOwnerApplyOrderDetailResponse extends AcsResponse {

	private String requestId;

	private Boolean success;

	private String errorMessage;

	private String errorCode;

	private OwnerApplyOrderDetail ownerApplyOrderDetail;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public Boolean getSuccess() {
		return this.success;
	}

	public void setSuccess(Boolean success) {
		this.success = success;
	}

	public String getErrorMessage() {
		return this.errorMessage;
	}

	public void setErrorMessage(String errorMessage) {
		this.errorMessage = errorMessage;
	}

	public String getErrorCode() {
		return this.errorCode;
	}

	public void setErrorCode(String errorCode) {
		this.errorCode = errorCode;
	}

	public OwnerApplyOrderDetail getOwnerApplyOrderDetail() {
		return this.ownerApplyOrderDetail;
	}

	public void setOwnerApplyOrderDetail(OwnerApplyOrderDetail ownerApplyOrderDetail) {
		this.ownerApplyOrderDetail = ownerApplyOrderDetail;
	}

	public static class OwnerApplyOrderDetail {

		private String applyType;

		private List resources;

		public String getApplyType() {
			return this.applyType;
		}

		public void setApplyType(String applyType) {
			this.applyType = applyType;
		}

		public List getResources() {
			return this.resources;
		}

		public void setResources(List resources) {
			this.resources = resources;
		}

		public static class Resource {

			private Boolean logic;

			private String targetId;

			private ResourceDetail resourceDetail;

			public Boolean getLogic() {
				return this.logic;
			}

			public void setLogic(Boolean logic) {
				this.logic = logic;
			}

			public String getTargetId() {
				return this.targetId;
			}

			public void setTargetId(String targetId) {
				this.targetId = targetId;
			}

			public ResourceDetail getResourceDetail() {
				return this.resourceDetail;
			}

			public void setResourceDetail(ResourceDetail resourceDetail) {
				this.resourceDetail = resourceDetail;
			}

			public static class ResourceDetail {

				private String searchName;

				private String dbType;

				private String envType;

				private String tableName;

				private List ownerIds;

				private List ownerNickNames;

				public String getSearchName() {
					return this.searchName;
				}

				public void setSearchName(String searchName) {
					this.searchName = searchName;
				}

				public String getDbType() {
					return this.dbType;
				}

				public void setDbType(String dbType) {
					this.dbType = dbType;
				}

				public String getEnvType() {
					return this.envType;
				}

				public void setEnvType(String envType) {
					this.envType = envType;
				}

				public String getTableName() {
					return this.tableName;
				}

				public void setTableName(String tableName) {
					this.tableName = tableName;
				}

				public List getOwnerIds() {
					return this.ownerIds;
				}

				public void setOwnerIds(List ownerIds) {
					this.ownerIds = ownerIds;
				}

				public List getOwnerNickNames() {
					return this.ownerNickNames;
				}

				public void setOwnerNickNames(List ownerNickNames) {
					this.ownerNickNames = ownerNickNames;
				}
			}
		}
	}

	@Override
	public GetOwnerApplyOrderDetailResponse getInstance(UnmarshallerContext context) {
		return	GetOwnerApplyOrderDetailResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy