com.alipay.api.domain.AlipayOfflineProviderMonitorLogSyncModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* ISV服务商监控数据回流
*
* @author auto create
* @since 1.0, 2016-09-28 11:33:15
*/
public class AlipayOfflineProviderMonitorLogSyncModel extends AlipayObject {
private static final long serialVersionUID = 2824922937322435399L;
/**
* 数据回流日志
*/
@ApiListField("logs")
@ApiField("i_s_v_log_sync")
private List logs;
public List getLogs() {
return this.logs;
}
public void setLogs(List logs) {
this.logs = logs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy