All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AntMerchantExpandQualityAssetproduceDetectResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.ContentErrorInfo;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: ant.merchant.expand.quality.assetproduce.detect response.
 * 
 * @author auto create
 * @since 1.0, 2024-11-01 10:47:21
 */
public class AntMerchantExpandQualityAssetproduceDetectResponse extends AlipayResponse {

	private static final long serialVersionUID = 2759642582859899389L;

	/** 
	 * 品检错误码信息
	 */
	@ApiField("detect_error_code")
	private String detectErrorCode;

	/** 
	 * 品检错误描述
	 */
	@ApiField("detect_error_desc")
	private String detectErrorDesc;

	/** 
	 * 品检错误详情,里边有具体的每一行错误信息,包括错误字段,错误值
	 */
	@ApiField("detect_error_info")
	private ContentErrorInfo detectErrorInfo;

	/** 
	 * 品检成功标识
	 */
	@ApiField("detect_success")
	private Boolean detectSuccess;

	public void setDetectErrorCode(String detectErrorCode) {
		this.detectErrorCode = detectErrorCode;
	}
	public String getDetectErrorCode( ) {
		return this.detectErrorCode;
	}

	public void setDetectErrorDesc(String detectErrorDesc) {
		this.detectErrorDesc = detectErrorDesc;
	}
	public String getDetectErrorDesc( ) {
		return this.detectErrorDesc;
	}

	public void setDetectErrorInfo(ContentErrorInfo detectErrorInfo) {
		this.detectErrorInfo = detectErrorInfo;
	}
	public ContentErrorInfo getDetectErrorInfo( ) {
		return this.detectErrorInfo;
	}

	public void setDetectSuccess(Boolean detectSuccess) {
		this.detectSuccess = detectSuccess;
	}
	public Boolean getDetectSuccess( ) {
		return this.detectSuccess;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy