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

com.alipay.api.response.AlipayIserviceCognitiveBillInferenceQueryResponse 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.BillInferenceResult;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.iservice.cognitive.bill.inference.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 17:32:00
 */
public class AlipayIserviceCognitiveBillInferenceQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 2521824216177738182L;

	/** 
	 * 发票识别内容详细信息
	 */
	@ApiField("result")
	private BillInferenceResult result;

	/** 
	 * 信息抽取是否抽取成功
	 */
	@ApiField("ret")
	private Long ret;

	/** 
	 * 开放平台trace_id
	 */
	@ApiField("trace_id")
	private String traceId;

	public void setResult(BillInferenceResult result) {
		this.result = result;
	}
	public BillInferenceResult getResult( ) {
		return this.result;
	}

	public void setRet(Long ret) {
		this.ret = ret;
	}
	public Long getRet( ) {
		return this.ret;
	}

	public void setTraceId(String traceId) {
		this.traceId = traceId;
	}
	public String getTraceId( ) {
		return this.traceId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy