com.alipay.api.domain.AlipayOpenPublicPartnerMenuOperateModel 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;
/**
* 为服务窗合作伙伴(如YunOS),提供操作服务窗菜单的功能
*
* @author auto create
* @since 1.0, 2016-10-26 18:05:14
*/
public class AlipayOpenPublicPartnerMenuOperateModel extends AlipayObject {
private static final long serialVersionUID = 2267781449259472962L;
/**
* 行为参数
*/
@ApiField("action_param")
private String actionParam;
/**
* 行为类型(in,out,api)
*/
@ApiField("action_type")
private String actionType;
/**
* 协议号
*/
@ApiField("agreement_id")
private String agreementId;
/**
* 服务窗id
*/
@ApiField("public_id")
private String publicId;
/**
* 第三方账号ID ,银行卡号/户号/手机号
*/
@ApiField("third_account_id")
private String thirdAccountId;
/**
* 支付宝用户id
*/
@ApiField("user_id")
private String userId;
public String getActionParam() {
return this.actionParam;
}
public void setActionParam(String actionParam) {
this.actionParam = actionParam;
}
public String getActionType() {
return this.actionType;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public String getAgreementId() {
return this.agreementId;
}
public void setAgreementId(String agreementId) {
this.agreementId = agreementId;
}
public String getPublicId() {
return this.publicId;
}
public void setPublicId(String publicId) {
this.publicId = publicId;
}
public String getThirdAccountId() {
return this.thirdAccountId;
}
public void setThirdAccountId(String thirdAccountId) {
this.thirdAccountId = thirdAccountId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy