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

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

package com.alipay.api.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.open.app.service.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-08-21 11:21:26
 */
public class AlipayOpenAppServiceQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3844454296251464659L;

	/** 
	 * 驳回理由
	 */
	@ApiField("reject_reason")
	private String rejectReason;

	/** 
	 * 服务id
	 */
	@ApiField("service_code")
	private String serviceCode;

	/** 
	 * 服务描述xml格式
	 */
	@ApiField("service_xml")
	private String serviceXml;

	/** 
	 * 服务状态
	 */
	@ApiField("status")
	private String status;

	/** 
	 * 服务模板类型
	 */
	@ApiField("template_type")
	private String templateType;

	/** 
	 * 服务履约类型
	 */
	@ApiField("user_service_delivery_type")
	private String userServiceDeliveryType;

	public void setRejectReason(String rejectReason) {
		this.rejectReason = rejectReason;
	}
	public String getRejectReason( ) {
		return this.rejectReason;
	}

	public void setServiceCode(String serviceCode) {
		this.serviceCode = serviceCode;
	}
	public String getServiceCode( ) {
		return this.serviceCode;
	}

	public void setServiceXml(String serviceXml) {
		this.serviceXml = serviceXml;
	}
	public String getServiceXml( ) {
		return this.serviceXml;
	}

	public void setStatus(String status) {
		this.status = status;
	}
	public String getStatus( ) {
		return this.status;
	}

	public void setTemplateType(String templateType) {
		this.templateType = templateType;
	}
	public String getTemplateType( ) {
		return this.templateType;
	}

	public void setUserServiceDeliveryType(String userServiceDeliveryType) {
		this.userServiceDeliveryType = userServiceDeliveryType;
	}
	public String getUserServiceDeliveryType( ) {
		return this.userServiceDeliveryType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy