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

com.alipay.api.response.AlipayPassInstanceAddResponse 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.39.218.ALL
Show newest version
package com.alipay.api.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.pass.instance.add response.
 * 
 * @author auto create
 * @since 1.0, 2020-01-08 21:14:22
 */
public class AlipayPassInstanceAddResponse extends AlipayResponse {

	private static final long serialVersionUID = 3888585424393182443L;

	/** 
	 * 接口调用返回结果信息
serialNumber:唯一核销凭证串号(必须由动态传参指定)
passId:券唯一id
operation:本次调用的操作类型,ADD
errorCode:处理结果码(错误码)
errorMsg:处理结果说明(错误说明)
	 */
	@ApiField("result")
	private String result;

	/** 
	 * 操作成功标识【true:成功;false:失败】
	 */
	@ApiField("success")
	private String success;

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

	public void setSuccess(String success) {
		this.success = success;
	}
	public String getSuccess( ) {
		return this.success;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy