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

br.com.uol.pagseguro.api.direct.preapproval.DirectPreApprovalData Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy