com.notronix.etsy.api.model.User 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;
import java.util.List;
import java.util.Map;
public interface User
{
Long getUserId();
String getLoginName();
String getPrimaryEmail();
Instant getCreationTsz();
Map getUserPubKey();
Long getReferredByUserId();
FeedbackInfo getFeedbackInfo();
Long getAwaitingFeedbackCount();
Boolean getUseNewInventoryEndpoints();
List extends Shop> getShops();
UserProfile getProfile();
List extends Receipt> getBuyerReceipts();
List extends Transaction> getBuyerTransactions();
List extends UserAddress> getAddresses();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy