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

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

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

import lombok.Data;
import lombok.EqualsAndHashCode;

import com.lookfirst.wepay.api.AccountBalance;

/**
 * https://stage.wepay.com/developer/reference/account
 *
 * Gets the balance for the account.
 *
 * @author Jon Scott Stevens
 * @author Jeff Schnitzer
 *
 * @deprecated Data is now returned as part of /account
 */
@Deprecated
@Data
@EqualsAndHashCode(callSuper=false)
public class AccountBalanceRequest extends WePayRequest {

	/** The unique ID of the account you want to get the balance of. */
	private Long accountId;

	/** */
	@Override
	public String getEndpoint() {
		return "/account/balance";
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy