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

com.notronix.etsy.api.model.User Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
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 getShops();
    UserProfile getProfile();
    List getBuyerReceipts();
    List getBuyerTransactions();
    List getAddresses();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy