com.notronix.etsy.api.model.UserProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JEtsy Show documentation
Show all versions of JEtsy Show documentation
A Java implementation of a Java version of the Etsy API
package com.notronix.etsy.api.model;
import java.time.Instant;
public interface UserProfile
{
Long getUserId();
String getLoginName();
String getBio();
String getGender();
String getBirthMonth();
String getBirthDay();
String getBirthYear();
Instant getJoinTsz();
String getMaterials();
Long getCountryId();
String getRegion();
String getCity();
Long getAvatarId();
Float getLat();
Float getLon();
Long getTransactionBuyCount();
Long getTransactionSoldCount();
Boolean getSeller();
String getImageUrl75x75();
String getFirstName();
String getLastName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy