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

com.alipay.api.domain.AlipayMerchantTradecomplainSupplementSubmitModel 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-01-12 10:57:53
 */
public class AlipayMerchantTradecomplainSupplementSubmitModel extends AlipayObject {

	private static final long serialVersionUID = 6375817992492794142L;

	/**
	 * 支付宝侧投诉单号
	 */
	@ApiField("complain_event_id")
	private String complainEventId;

	/**
	 * 回复内容,最多不超过200个字
	 */
	@ApiField("supplement_content")
	private String supplementContent;

	/**
	 * 商家补充凭证时的图片id,多个逗号隔开(图片id可以通过"商户上传处理图片"接口获取)
	 */
	@ApiField("supplement_images")
	private String supplementImages;

	public String getComplainEventId() {
		return this.complainEventId;
	}
	public void setComplainEventId(String complainEventId) {
		this.complainEventId = complainEventId;
	}

	public String getSupplementContent() {
		return this.supplementContent;
	}
	public void setSupplementContent(String supplementContent) {
		this.supplementContent = supplementContent;
	}

	public String getSupplementImages() {
		return this.supplementImages;
	}
	public void setSupplementImages(String supplementImages) {
		this.supplementImages = supplementImages;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy