com.alipay.api.response.ZhimaCreditPeZmgoPreorderCreateResponse 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: zhima.credit.pe.zmgo.preorder.create response.
*
* @author auto create
* @since 1.0, 2024-05-20 17:29:11
*/
public class ZhimaCreditPeZmgoPreorderCreateResponse extends AlipayResponse {
private static final long serialVersionUID = 3145553255168655889L;
/**
* 业务类型
*/
@ApiField("biz_type")
private String bizType;
/**
* 商户ID
*/
@ApiField("partner_id")
private String partnerId;
/**
* 芝麻GO预创建单号
*/
@ApiField("preorder_no")
private String preorderNo;
public void setBizType(String bizType) {
this.bizType = bizType;
}
public String getBizType( ) {
return this.bizType;
}
public void setPartnerId(String partnerId) {
this.partnerId = partnerId;
}
public String getPartnerId( ) {
return this.partnerId;
}
public void setPreorderNo(String preorderNo) {
this.preorderNo = preorderNo;
}
public String getPreorderNo( ) {
return this.preorderNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy