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

com.alipay.api.response.AnttechMorseMarketingPayinstEquitySendResponse 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.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.PayInstEquitySendResult;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: anttech.morse.marketing.payinst.equity.send response.
 * 
 * @author auto create
 * @since 1.0, 2024-02-23 17:21:57
 */
public class AnttechMorseMarketingPayinstEquitySendResponse extends AlipayResponse {

	private static final long serialVersionUID = 1398179746671274697L;

	/** 
	 * 蚂蚁侧返回的唯一标识
	 */
	@ApiField("biz_no")
	private String bizNo;

	/** 
	 * 权益发放结果详情
	 */
	@ApiListField("result_details")
	@ApiField("pay_inst_equity_send_result")
	private List resultDetails;

	/** 
	 * 发放成功后生成的发放凭证号
	 */
	@ApiField("send_order_id")
	private String sendOrderId;

	/** 
	 * 全部成功返回true,有任何失败返回false
	 */
	@ApiField("send_success")
	private Boolean sendSuccess;

	public void setBizNo(String bizNo) {
		this.bizNo = bizNo;
	}
	public String getBizNo( ) {
		return this.bizNo;
	}

	public void setResultDetails(List resultDetails) {
		this.resultDetails = resultDetails;
	}
	public List getResultDetails( ) {
		return this.resultDetails;
	}

	public void setSendOrderId(String sendOrderId) {
		this.sendOrderId = sendOrderId;
	}
	public String getSendOrderId( ) {
		return this.sendOrderId;
	}

	public void setSendSuccess(Boolean sendSuccess) {
		this.sendSuccess = sendSuccess;
	}
	public Boolean getSendSuccess( ) {
		return this.sendSuccess;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy