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

com.alipay.api.response.AlipayCloudCloudbaseResourcepackageAlterQueryResponse Maven / Gradle / Ivy

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ResourcePackageInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.cloud.cloudbase.resourcepackage.alter.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-22 21:06:41
 */
public class AlipayCloudCloudbaseResourcepackageAlterQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4665454689479791319L;

	/** 
	 * 当前实例规格编码
	 */
	@ApiField("current_spec_code")
	private String currentSpecCode;

	/** 
	 * 资源包列表
	 */
	@ApiListField("resource_pkgs")
	@ApiField("resource_package_info")
	private List resourcePkgs;

	public void setCurrentSpecCode(String currentSpecCode) {
		this.currentSpecCode = currentSpecCode;
	}
	public String getCurrentSpecCode( ) {
		return this.currentSpecCode;
	}

	public void setResourcePkgs(List resourcePkgs) {
		this.resourcePkgs = resourcePkgs;
	}
	public List getResourcePkgs( ) {
		return this.resourcePkgs;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy