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

com.notronix.etsy.api.shops.model.Shop Maven / Gradle / Ivy

There is a newer version: 3.0.0014
Show newest version
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