com.alipay.api.domain.AlipayFinanceQuotationProtocolAuthorizeSubscribeModel 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 java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 机构协议授权订阅
*
* @author auto create
* @since 1.0, 2022-12-07 21:01:15
*/
public class AlipayFinanceQuotationProtocolAuthorizeSubscribeModel extends AlipayObject {
private static final long serialVersionUID = 7455693177745219749L;
/**
* 蚂蚁统一会员ID
*/
@ApiField("open_id")
private String openId;
/**
* 与蚂蚁业务方约定的类型,同时约定$orgCode值
*/
@ApiListField("protocol_type_list")
@ApiField("string")
private List protocolTypeList;
/**
* 订阅个股还是全部,ALL表示全部,SYMBOL表示个股
*/
@ApiField("sign_content")
private String signContent;
/**
* 股票市场上的代码+市场组合的代码
*/
@ApiListField("symbols")
@ApiField("string")
private List symbols;
/**
* 蚂蚁统一会员ID
*/
@ApiField("user_id")
private String userId;
public String getOpenId() {
return this.openId;
}
public void setOpenId(String openId) {
this.openId = openId;
}
public List getProtocolTypeList() {
return this.protocolTypeList;
}
public void setProtocolTypeList(List protocolTypeList) {
this.protocolTypeList = protocolTypeList;
}
public String getSignContent() {
return this.signContent;
}
public void setSignContent(String signContent) {
this.signContent = signContent;
}
public List getSymbols() {
return this.symbols;
}
public void setSymbols(List symbols) {
this.symbols = symbols;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy