com.alipay.api.response.AlipayCommerceOperationTimescardOrderCreateResponse 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.commerce.operation.timescard.order.create response.
*
* @author auto create
* @since 1.0, 2024-10-30 14:06:00
*/
public class AlipayCommerceOperationTimescardOrderCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 5867762155296517472L;
/**
* 是否需要调用jsapi确认向卡包发卡
*/
@ApiField("is_need_invoke_jsapi")
private Boolean isNeedInvokeJsapi;
/**
* 卡包发卡token
*/
@ApiField("kabao_token")
private String kabaoToken;
/**
* 次卡订单id
*/
@ApiField("order_id")
private String orderId;
/**
* 拉起收银台的订单参数
*/
@ApiField("order_str")
private String orderStr;
public void setIsNeedInvokeJsapi(Boolean isNeedInvokeJsapi) {
this.isNeedInvokeJsapi = isNeedInvokeJsapi;
}
public Boolean getIsNeedInvokeJsapi( ) {
return this.isNeedInvokeJsapi;
}
public void setKabaoToken(String kabaoToken) {
this.kabaoToken = kabaoToken;
}
public String getKabaoToken( ) {
return this.kabaoToken;
}
public void setOrderId(String orderId) {
this.orderId = orderId;
}
public String getOrderId( ) {
return this.orderId;
}
public void setOrderStr(String orderStr) {
this.orderStr = orderStr;
}
public String getOrderStr( ) {
return this.orderStr;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy