com.alipay.api.domain.AlipayOpenPublicLabelUserDeleteModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 公众号标签管理-删除用户标签
*
* @author auto create
* @since 1.0, 2016-10-26 18:05:14
*/
public class AlipayOpenPublicLabelUserDeleteModel extends AlipayObject {
private static final long serialVersionUID = 1377347559898177633L;
/**
* 标签id
*/
@ApiField("label_id")
private String labelId;
/**
* 支付宝用户的userid,2088开头长度为16位的字符串
*/
@ApiField("user_id")
private String userId;
public String getLabelId() {
return this.labelId;
}
public void setLabelId(String labelId) {
this.labelId = labelId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy