com.alipay.api.response.AlipayOpenMiniVersionUploadResponse 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.open.mini.version.upload response.
*
* @author auto create
* @since 1.0, 2020-10-01 15:57:26
*/
public class AlipayOpenMiniVersionUploadResponse extends AlipayResponse {
private static final long serialVersionUID = 5865119973227946932L;
/**
* 构建的状态,0-构建排队中;1-正在构建;2-构建成功;3-构建失败;5-构建超时
*/
@ApiField("build_status")
private String buildStatus;
/**
* 创建版本的状态,0-构建排队中;1-正在构建;2-构建成功;3-构建失败;5-构建超时;6-版本创建成功
*/
@ApiField("create_status")
private String createStatus;
/**
* 是否需要轮询
*/
@ApiField("need_rotation")
private String needRotation;
/**
* 是否创建了版本
*/
@ApiField("version_created")
private String versionCreated;
public void setBuildStatus(String buildStatus) {
this.buildStatus = buildStatus;
}
public String getBuildStatus( ) {
return this.buildStatus;
}
public void setCreateStatus(String createStatus) {
this.createStatus = createStatus;
}
public String getCreateStatus( ) {
return this.createStatus;
}
public void setNeedRotation(String needRotation) {
this.needRotation = needRotation;
}
public String getNeedRotation( ) {
return this.needRotation;
}
public void setVersionCreated(String versionCreated) {
this.versionCreated = versionCreated;
}
public String getVersionCreated( ) {
return this.versionCreated;
}
}