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

com.lookfirst.wepay.api.req.TransferRefundRequest Maven / Gradle / Ivy

The newest version!
package com.lookfirst.wepay.api.req;

import lombok.Data;
import lombok.EqualsAndHashCode;

import com.lookfirst.wepay.api.TransferState;

/**
 * https://stage.wepay.com/developer/reference/disbursement
 *
 * This call allows you to refund a transfer.
 *
 * @author Jon Scott Stevens
 * @author Jeff Schnitzer
 */
@Deprecated
@Data
@EqualsAndHashCode(callSuper=false)
public class TransferRefundRequest extends WePayRequest {

	/** Yes	The unique ID of the transfer you want to refund. */
	private String transferId;

	/** */
	@Override
	public String getEndpoint() {
		return "/transfer/refund";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy