com.alipay.api.response.AlipayCloudCloudrunStaticsiteCacheruleBatchqueryResponse 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.CacheRule;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.cloud.cloudrun.staticsite.cacherule.batchquery response.
*
* @author auto create
* @since 1.0, 2024-03-14 14:59:43
*/
public class AlipayCloudCloudrunStaticsiteCacheruleBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5399333395514427912L;
/**
* 缓存配置列表
*/
@ApiListField("cacherule_list")
@ApiField("cache_rule")
private List cacheruleList;
public void setCacheruleList(List cacheruleList) {
this.cacheruleList = cacheruleList;
}
public List getCacheruleList( ) {
return this.cacheruleList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy