com.notronix.etsy.api.users.UserResource 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.users;
import com.notronix.etsy.api.EtsyException;
import com.notronix.etsy.api.authentication.model.Credentials;
import com.notronix.etsy.api.PageableResponse;
import com.notronix.etsy.api.users.model.GetMeResponse;
import com.notronix.etsy.api.users.model.User;
import com.notronix.etsy.api.users.model.UserAddress;
public interface UserResource
{
GetMeResponse getMe(Credentials accessCredentials) throws EtsyException;
User getUser(Credentials accessCredentials, Long userId) throws EtsyException;
UserAddress getUserAddress(Credentials accessCredentials, Long userAddressId) throws EtsyException;
PageableResponse extends UserAddress> getUserAddresses(Credentials accessCredentials, Integer limit, Integer offset)
throws EtsyException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy