com.alipay.api.response.AlipayMerchantOrderCreateandpayResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.merchant.order.createandpay response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:26:13
*/
public class AlipayMerchantOrderCreateandpayResponse extends AlipayResponse {
private static final long serialVersionUID = 3758394139329936821L;
/**
* alipay侧的订单id
*/
@ApiField("order_id")
private String orderId;
/**
* 支付成功或者失败,PAYMENT_SUCCESS、PAYMENT_FAIL、PAYMENT_INPROCESS等,只有整体返回Success并且这个字段存在、且等于PAYMENT_SUCCESS才代表支付/积分扣减成功。只有整体Success不代表支付成功!
*/
@ApiField("payment_status")
private String paymentStatus;
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId( ) {
return this.orderId;
}
public void setPaymentStatus(String paymentStatus) {
this.paymentStatus = paymentStatus;
}
public String getPaymentStatus( ) {
return this.paymentStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy