com.adjust.sdk.criteo.CriteoProduct Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adjust-android-criteo Show documentation
Show all versions of adjust-android-criteo Show documentation
The Criteo plugin for Adjust SDK for Android
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;
}
}