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

com.buyexpressly.api.resource.merchant.InvoiceRequest 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 com.buyexpressly.api.util.LocalDateIso8601DateSerializer;
import org.codehaus.jackson.annotate.JsonAutoDetect;
import org.codehaus.jackson.annotate.JsonMethod;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import org.joda.time.LocalDate;

@JsonAutoDetect(value = JsonMethod.FIELD, fieldVisibility = JsonAutoDetect.Visibility.ANY)
public final class InvoiceRequest {
    private String email;
    @JsonSerialize(using = LocalDateIso8601DateSerializer.class)
    private LocalDate from;
    @JsonSerialize(using = LocalDateIso8601DateSerializer.class)
    private LocalDate to;

    private InvoiceRequest() {
    }

    public String getEmail() {
        return email;
    }

    public LocalDate getFrom() {
        return from;
    }

    public LocalDate getTo() {
        return to;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy