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

com.riskified.models.EventLineItem Maven / Gradle / Ivy

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