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

com.alipay.api.domain.AntMerchantExpandIndirectSupplementCreateModel 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, 2023-02-08 16:51:50
 */
public class AntMerchantExpandIndirectSupplementCreateModel extends AlipayObject {

	private static final long serialVersionUID = 1687534192513692396L;

	/**
	 * logo图片,其值为使用ant.merchant.expand.indirect.image.upload上传图片得到的一串oss key。
	 */
	@ApiField("logo_key")
	private String logoKey;

	/**
	 * 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号
	 */
	@ApiField("sub_merchant_id")
	private String subMerchantId;

	public String getLogoKey() {
		return this.logoKey;
	}
	public void setLogoKey(String logoKey) {
		this.logoKey = logoKey;
	}

	public String getSubMerchantId() {
		return this.subMerchantId;
	}
	public void setSubMerchantId(String subMerchantId) {
		this.subMerchantId = subMerchantId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy