br.com.uol.pagseguro.api.common.domain.Partner 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.common.domain;
import java.util.Date;
import java.util.List;
/**
* Interface for Partner
*
* @author PagSeguro Internet Ltda.
*/
public interface Partner {
/**
* Get partner's name
*
* @return Name
*/
String getName();
/**
* Get partner's birth date
*
* @return Birth Date
*/
String getBirthDate();
/**
* Get partner's documents
*
* @return Documents
* @see Document
*/
List extends Document> getDocuments();
}