com.alipay.api.domain.AlipayEbppInvoiceUserAuthQueryModel 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, 2024-11-14 14:53:21
*/
public class AlipayEbppInvoiceUserAuthQueryModel extends AlipayObject {
private static final long serialVersionUID = 6361253495278533441L;
/**
* 用户手机号
*/
@ApiField("mobile_phone")
private String mobilePhone;
/**
* 用于查询授权的发票的预览链接
*/
@ApiField("redirect_url")
private String redirectUrl;
/**
* 授权查询来源唯一标识
*/
@ApiField("source_tag")
private String sourceTag;
/**
* 用户开票邮箱
*/
@ApiField("user_email")
private String userEmail;
public String getMobilePhone() {
return this.mobilePhone;
}
public void setMobilePhone(String mobilePhone) {
this.mobilePhone = mobilePhone;
}
public String getRedirectUrl() {
return this.redirectUrl;
}
public void setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
}
public String getSourceTag() {
return this.sourceTag;
}
public void setSourceTag(String sourceTag) {
this.sourceTag = sourceTag;
}
public String getUserEmail() {
return this.userEmail;
}
public void setUserEmail(String userEmail) {
this.userEmail = userEmail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy