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

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

There is a newer version: 1.1.18
Show newest version
package com.alipay.api.domain;

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

/**
 * 签约接入信息
 *
 * @author auto create
 * @since 1.0, 2017-07-11 14:33:22
 */
public class AccessParams extends AlipayObject {

	private static final long serialVersionUID = 2664436416629521988L;

	/**
	 * 目前支持以下值:
1. ALIPAYAPP  (钱包h5页面签约)
2. QRCODE(扫码签约)
3. QRCODEORSMS(扫码签约或者短信签约)
	 */
	@ApiField("channel")
	private String channel;

	public String getChannel() {
		return this.channel;
	}
	public void setChannel(String channel) {
		this.channel = channel;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy