
com.riskified.models.EventLineItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riskified-sdk Show documentation
Show all versions of riskified-sdk Show documentation
Risikified rest api SDK for java
The newest version!
package com.riskified.models;
import java.util.Date;
public class EventLineItem extends LineItem {
private String section;
private String countryCode;
private String city;
private float latitude;
private float longitude;
private Date eventDate;
public EventLineItem(double price, int quantity, String title,
String productId) {
super(price, quantity, title, productId);
}
public String getSection() {
return section;
}
public void setSection(String section) {
this.section = section;
}
public String getCountryCode() {
return countryCode;
}
public void setCountryCode(String countryCode) {
this.countryCode = countryCode;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public float getLatitude() {
return latitude;
}
public void setLatitude(float latitude) {
this.latitude = latitude;
}
public float getLongitude() {
return longitude;
}
public void setLongitude(float longitude) {
this.longitude = longitude;
}
public Date getEventDate() {
return eventDate;
}
public void setEventDate(Date eventDate) {
this.eventDate = eventDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy