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

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

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, 2023-03-07 19:54:35
 */
public class AuthorizedRuleDTO extends AlipayObject {

	private static final long serialVersionUID = 7867964743157768346L;

	/**
	 * 授权商户列表
	 */
	@ApiListField("authorized_detail_list")
	@ApiField("authorize_detail_d_t_o")
	private List authorizedDetailList;

	/**
	 * WHITELIST-白名单
ALL-全部
	 */
	@ApiField("authorized_type")
	private String authorizedType;

	public List getAuthorizedDetailList() {
		return this.authorizedDetailList;
	}
	public void setAuthorizedDetailList(List authorizedDetailList) {
		this.authorizedDetailList = authorizedDetailList;
	}

	public String getAuthorizedType() {
		return this.authorizedType;
	}
	public void setAuthorizedType(String authorizedType) {
		this.authorizedType = authorizedType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy