com.notronix.etsy.api.model.Transaction 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;
public interface Transaction
{
Long getTransactionId();
String getTitle();
String getDescription();
Long getSellerUserId();
Long getBuyerUserId();
Instant getCreationTsz();
Instant getPaidTsz();
Instant getShippedTsz();
Float getPrice();
String getCurrencyCode();
Integer getQuantity();
List getTags();
List getMaterials();
Long getImageListingId();
Long getReceiptId();
Float getShippingCost();
Boolean getDigital();
String getFileData();
Long getListingId();
Boolean getQuickSale();
Long getSellerFeedbackId();
Long getBuyerFeedbackId();
String getTransactionType();
String getUrl();
List extends ListingInventory> getVariations();
ListingProduct getListingProduct();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy