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

com.adjust.sdk.criteo.CriteoProduct Maven / Gradle / Ivy

There is a newer version: 4.38.5
Show newest version
package com.adjust.sdk.criteo;

/**
 * Created by pfms on 24/02/15.
 */
public class CriteoProduct {
    float price;
    int quantity;
    String productID;

    public CriteoProduct(float price, int quantity, String productID) {
        this.price = price;
        this.quantity = quantity;
        this.productID = productID;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy