Package com.eclipsesource.tabris.tracking.internal.analytics.model.hit

Examples of com.eclipsesource.tabris.tracking.internal.analytics.model.hit.ItemHit


    }
    return itemHits;
  }

  private Hit createItemHit( String orderId, OrderItem item ) {
    ItemHit itemHit = new ItemHit( item.getName(), orderId );
    if( item.getCategory() != null ) {
      itemHit.setCategory( item.getCategory() );
    }
    if( item.getSKU() != null ) {
      itemHit.setCode( item.getSKU() );
    }
    itemHit.setPrice( toDouble( item.getPrice() ) );
    itemHit.setQuantity( item.getQuantity() );
    return itemHit;
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.tracking.internal.analytics.model.hit.ItemHit

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.