All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.AlipayUserAuthSecondpartyTokenVerifyModel Maven / Gradle / Ivy

package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 二方登录token校验
 *
 * @author auto create
 * @since 1.0, 2020-08-24 17:22:43
 */
public class AlipayUserAuthSecondpartyTokenVerifyModel extends AlipayObject {

	private static final long serialVersionUID = 3343663575127726334L;

	/**
	 * 二方登录token
	 */
	@ApiField("second_party_token")
	private String secondPartyToken;

	/**
	 * 渠道来源
	 */
	@ApiField("source")
	private String source;

	public String getSecondPartyToken() {
		return this.secondPartyToken;
	}
	public void setSecondPartyToken(String secondPartyToken) {
		this.secondPartyToken = secondPartyToken;
	}

	public String getSource() {
		return this.source;
	}
	public void setSource(String source) {
		this.source = source;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy