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

com.notronix.etsy.api.model.Transaction 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;

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 getVariations();
    ListingProduct getListingProduct();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy