
com.alipay.api.domain.AlipayMarketingDataDashboardCancelModel 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
baidu push client api with maven
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;
/**
* 仪表盘取消授权
*
* @author auto create
* @since 1.0, 2017-01-18 22:20:19
*/
public class AlipayMarketingDataDashboardCancelModel extends AlipayObject {
private static final long serialVersionUID = 7692832932787478281L;
/**
* 批量取消仪表盘授权
*/
@ApiListField("dashboard_ids")
@ApiField("string")
private List dashboardIds;
public List getDashboardIds() {
return this.dashboardIds;
}
public void setDashboardIds(List dashboardIds) {
this.dashboardIds = dashboardIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy