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

com.alipay.api.domain.DeliveryMiniAppContentInfo 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, 2023-08-15 10:20:05
 */
public class DeliveryMiniAppContentInfo extends AlipayObject {

	private static final long serialVersionUID = 4587299282261843871L;

	/**
	 * 仅小程序推广可用。
	 */
	@ApiField("mini_app_delivery_type")
	private String miniAppDeliveryType;

	/**
	 * 小程序ID
	 */
	@ApiField("mini_app_id")
	private String miniAppId;

	/**
	 * 小程序服务编码/home_page,通过 alipay.open.app.appcontent.function.create(小程序服务创建)接口创建服务后获取。 限制: 1.只有mini_app_id有值时该值传入才会有效 2.当前只支持一个服务code 3.service_codes必须是已传入的mini_app_id下的小程序
	 */
	@ApiListField("service_code_list")
	@ApiField("string")
	private List serviceCodeList;

	public String getMiniAppDeliveryType() {
		return this.miniAppDeliveryType;
	}
	public void setMiniAppDeliveryType(String miniAppDeliveryType) {
		this.miniAppDeliveryType = miniAppDeliveryType;
	}

	public String getMiniAppId() {
		return this.miniAppId;
	}
	public void setMiniAppId(String miniAppId) {
		this.miniAppId = miniAppId;
	}

	public List getServiceCodeList() {
		return this.serviceCodeList;
	}
	public void setServiceCodeList(List serviceCodeList) {
		this.serviceCodeList = serviceCodeList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy