![JAR search and dependency download from the Maven repository](/logo.png)
com.alipay.api.response.AlipayOverseasOpenPreorderCreateResponse 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.domain.TuitionISVResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.overseas.open.preorder.create response.
*
* @author auto create
* @since 1.0, 2024-05-28 11:52:04
*/
public class AlipayOverseasOpenPreorderCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 5895669572395877471L;
/**
* 预创建单单号
*/
@ApiField("pre_order_id")
private String preOrderId;
/**
* 预订单链接地址(小程序的链接地址)
*/
@ApiField("pre_order_link")
private String preOrderLink;
/**
* 结果
*/
@ApiField("result")
private TuitionISVResult result;
public void setPreOrderId(String preOrderId) {
this.preOrderId = preOrderId;
}
public String getPreOrderId( ) {
return this.preOrderId;
}
public void setPreOrderLink(String preOrderLink) {
this.preOrderLink = preOrderLink;
}
public String getPreOrderLink( ) {
return this.preOrderLink;
}
public void setResult(TuitionISVResult result) {
this.result = result;
}
public TuitionISVResult getResult( ) {
return this.result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy