io.github.dft.shipster.model.order.TrackingInformation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shipster Show documentation
Show all versions of shipster Show documentation
shipster API using JDK 11
package io.github.dft.shipster.model.order;
import lombok.Data;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonInclude;
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
public class TrackingInformation {
private String status;
private List updates;
}