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

com.buyexpressly.api.resource.merchant.InvoiceListRequest Maven / Gradle / Ivy

Go to download

Expressly Java SDK to integrate e-commerce platforms with the Expressly Network API

There is a newer version: 2.3.1
Show newest version
package com.buyexpressly.api.resource.merchant;

import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonMethod;

import java.util.List;

@JsonAutoDetect(value = JsonMethod.FIELD, fieldVisibility = JsonAutoDetect.Visibility.ANY)
public final class InvoiceListRequest {
    private List customers;

    private InvoiceListRequest() {

    }

    public InvoiceListRequest(List customers) {
        this.customers = customers;
    }

    public List getCustomers() {
        return customers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy