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

com.alipay.api.domain.AlipayOpenMiniAmpeInvokeappUnbindModel 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.39.218.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, 2020-07-14 10:50:01
 */
public class AlipayOpenMiniAmpeInvokeappUnbindModel extends AlipayObject {

	private static final long serialVersionUID = 6883491725341948614L;

	/**
	 * 产品ID列表
	 */
	@ApiListField("product_id_list")
	@ApiField("number")
	private List productIdList;

	/**
	 * 场景码,申请后平台分配
	 */
	@ApiField("scene_code")
	private String sceneCode;

	public List getProductIdList() {
		return this.productIdList;
	}
	public void setProductIdList(List productIdList) {
		this.productIdList = productIdList;
	}

	public String getSceneCode() {
		return this.sceneCode;
	}
	public void setSceneCode(String sceneCode) {
		this.sceneCode = sceneCode;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy