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

com.alipay.api.domain.AlipayPcreditHuabeiMerchantGoodsSyncModel 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 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, 2022-08-11 18:47:01
 */
public class AlipayPcreditHuabeiMerchantGoodsSyncModel extends AlipayObject {

	private static final long serialVersionUID = 7542656976618127689L;

	/**
	 * 同步的宝贝信息列表
	 */
	@ApiListField("item_list")
	@ApiField("hb_mei_wei_item_sync")
	private List itemList;

	/**
	 * 商家宝贝信息同步,商户请求蚂蚁侧
	 */
	@ApiField("type")
	private String type;

	public List getItemList() {
		return this.itemList;
	}
	public void setItemList(List itemList) {
		this.itemList = itemList;
	}

	public String getType() {
		return this.type;
	}
	public void setType(String type) {
		this.type = type;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy