32 lines
518 B
Java
32 lines
518 B
Java
package de.rwu.easydrop.model;
|
|
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* An Offer.
|
|
*
|
|
* @since 0.3.0
|
|
*/
|
|
@Data
|
|
public class Offer {
|
|
/**
|
|
* ID of the offer, built from identifiers of the source platforms.
|
|
*/
|
|
private String offerId;
|
|
|
|
/**
|
|
* The product that our software buys.
|
|
*/
|
|
private Product sourceProduct;
|
|
|
|
/**
|
|
* The product that our software sells.
|
|
*/
|
|
private Product targetProduct;
|
|
|
|
/**
|
|
* Date of last update of the offer.
|
|
*/
|
|
private String lastUpdate;
|
|
}
|