com.notronix.etsy.api.shops.model.Shop 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.shops.model;
import java.time.Instant;
import java.util.List;
public interface Shop
{
Long getId();
Long getUserId();
String getShopName();
Instant getCreatedDate();
String getTitle();
String getAnnouncement();
String getCurrencyCode();
Boolean isVacation();
String getVacationMessage();
String getSaleMessage();
String getDigitalSaleMessage();
Instant getLastUpdatedDate();
Integer getActiveListingsCount();
Integer getDigitalListingsCount();
String getLoginName();
Boolean acceptsCustomRequests();
String getWelcomePolicy();
String getPaymentPolicy();
String getShippingPolicy();
String getRefundPolicy();
String getAdditionalPolicy();
String getSellerInfoPolicy();
Instant getPoliciesLastUpdatedDate();
Boolean policyHasPrivateReceiptInfo();
Boolean hasUnstructuredPolicies();
String getPrivacyPolicy();
String getVacationAutoReply();
String getUrl();
String getImageUrl760x100();
Integer getNumberOfFavorers();
List getLanguages();
String getIconUrlFullxFull();
Boolean isUsingStructuredPolicies();
Boolean hasOnboardedStructuredPolicies();
Boolean policiesIncludeDisputeFormLink();
Boolean isDirectCheckoutOnboarded();
Boolean isEtsyPaymentsOnboarded();
Boolean isEligibleForCalculatedShipping();
Boolean isOptedInToBuyerPromise();
Boolean isUSBased();
Integer getTransactionSoldCount();
String getShippingFromCountryISO();
String getLocationCountryISO();
Integer getReviewCount();
Float getReviewAverage();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy