com.minlessika.membership.integration.ContactPerson Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of membership-integration Show documentation
Show all versions of membership-integration Show documentation
It's a library to help developers to integration membership services to another project.
package com.minlessika.membership.integration;
import java.time.MonthDay;
public interface ContactPerson extends Contact {
MonthDay birthDay();
Integer birthYear();
String birthPlace();
Sex sex();
String position();
String civility();
Double shoeSize();
Double height();
void update(
String name, MonthDay birthDate, Integer birthYear, String birthPlace, Sex sex, String position, String civility, String photo,
String addressLine1, String addressLine2, String phone1, String phone2, String whatsApp, String email, String city,
String stateOrProvince, Double shoeSize, Double height
);
}