com.alipay.api.response.ZhimaMerchantCreditserviceDetailModifyResponse 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.merchant.creditservice.detail.modify response.
*
* @author auto create
* @since 1.0, 2024-10-16 11:22:20
*/
public class ZhimaMerchantCreditserviceDetailModifyResponse extends AlipayResponse {
private static final long serialVersionUID = 4676272659246618558L;
/**
* 信用服务ID,通过zhima.merchant.creditservice.detail.create(芝麻信用信用服务创建)接口创建信用服务后获取。
*/
@ApiField("credit_service_id")
private String creditServiceId;
/**
* 信用服务版本号,是成功创建信用服务的版本号。
*/
@ApiField("version_no")
private String versionNo;
public void setCreditServiceId(String creditServiceId) {
this.creditServiceId = creditServiceId;
}
public String getCreditServiceId( ) {
return this.creditServiceId;
}
public void setVersionNo(String versionNo) {
this.versionNo = versionNo;
}
public String getVersionNo( ) {
return this.versionNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy