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

com.alipay.api.response.AlipayCommerceAcommunicationPointClearResponse 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.AlipayResponse;

/**
 * ALIPAY API: alipay.commerce.acommunication.point.clear response.
 * 
 * @author auto create
 * @since 1.0, 2024-12-02 21:52:21
 */
public class AlipayCommerceAcommunicationPointClearResponse extends AlipayResponse {

	private static final long serialVersionUID = 1155523938739152798L;

	/** 
	 * 积分id
	 */
	@ApiField("order_id")
	private String orderId;

	/** 
	 * 实际扣减的积分数,单位为个
	 */
	@ApiField("real_point")
	private Long realPoint;

	public void setOrderId(String orderId) {
		this.orderId = orderId;
	}
	public String getOrderId( ) {
		return this.orderId;
	}

	public void setRealPoint(Long realPoint) {
		this.realPoint = realPoint;
	}
	public Long getRealPoint( ) {
		return this.realPoint;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy