br.com.uol.pagseguro.api.direct.preapproval.DirectPreApprovalData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pagseguro-api Show documentation
Show all versions of pagseguro-api Show documentation
A collection of domain classes to ease integrations with PagSeguro Api
The newest version!
package br.com.uol.pagseguro.api.direct.preapproval;
import br.com.uol.pagseguro.api.common.domain.Sender;
/**
* Interface for searched direct pre approval by notification code
*
* @author PagSeguro Internet Ltda.
*/
public interface DirectPreApprovalData {
/**
* @return Name
*/
String getName();
/**
* @return Code
*/
String getCode();
/**
* @return Tracker
*/
String getTracker();
/**
* @return Status
*/
String getStatus();
/**
* @return Last Event Date
*/
String getLastEventDate();
/**
* @return Reference
*/
String getReference();
/**
* @return Charge
*/
String getCharge();
/**
* @return Sender
*/
Sender getSender();
/**
* @return Date
*/
String getDate();
}