com.alipay.api.domain.ZolozIdentificationCustomerEnrollCancelModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 删除匿名注册的留底照片
*
* @author auto create
* @since 1.0, 2023-03-03 16:09:10
*/
public class ZolozIdentificationCustomerEnrollCancelModel extends AlipayObject {
private static final long serialVersionUID = 8259878611838278482L;
/**
* 商户请求的唯一标志,该标识作为对账的关键信息,商户要保证其唯一性
*/
@ApiField("biz_id")
private String bizId;
/**
* 商户的用户id
*/
@ApiField("user_id")
private String userId;
public String getBizId() {
return this.bizId;
}
public void setBizId(String bizId) {
this.bizId = bizId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy