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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
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-11-16 14:06:46
 */
public class AuthenticationScene extends AlipayObject {

	private static final long serialVersionUID = 4357254931765678484L;

	/**
	 * 渠道类型
	 */
	@ApiField("access_channel")
	private String accessChannel;

	/**
	 * 系统名称
	 */
	@ApiField("biz_name")
	private String bizName;

	/**
	 * 业务产品节点
	 */
	@ApiField("biz_prod_node")
	private String bizProdNode;

	/**
	 * 产品
	 */
	@ApiField("biz_product")
	private String bizProduct;

	/**
	 * 场景参数
	 */
	@ApiField("scene_params")
	private String sceneParams;

	public String getAccessChannel() {
		return this.accessChannel;
	}
	public void setAccessChannel(String accessChannel) {
		this.accessChannel = accessChannel;
	}

	public String getBizName() {
		return this.bizName;
	}
	public void setBizName(String bizName) {
		this.bizName = bizName;
	}

	public String getBizProdNode() {
		return this.bizProdNode;
	}
	public void setBizProdNode(String bizProdNode) {
		this.bizProdNode = bizProdNode;
	}

	public String getBizProduct() {
		return this.bizProduct;
	}
	public void setBizProduct(String bizProduct) {
		this.bizProduct = bizProduct;
	}

	public String getSceneParams() {
		return this.sceneParams;
	}
	public void setSceneParams(String sceneParams) {
		this.sceneParams = sceneParams;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy