com.alipay.api.domain.AlipayOpenPublicLabelUserCreateModel 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 AlipayOpenPublicLabelUserCreateModel extends AlipayObject {
private static final long serialVersionUID = 3879312366713367387L;
/**
* 要绑定的标签Id
*/
@ApiField("label_id")
private Long labelId;
/**
* 支付宝用户id,2088开头长度为16位的字符串
*/
@ApiField("user_id")
private String userId;
public Long getLabelId() {
return this.labelId;
}
public void setLabelId(Long 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