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

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


    return eventHit;
  }

  private Hit createTransactionHit( TrackingEvent event, AdvancedConfiguration advancedConfiguration ) {
    Order order = ( Order )event.getDetail();
    TransactionHit hit = new TransactionHit( order.getOrderId() );
    hit.setRevenue( toDouble( order.getTotal() ) );
    hit.setShipping( toDouble( order.getShipping() ) );
    hit.setTax( toDouble( order.getTax() ) );
    return hit;
  }
View Full Code Here

TOP

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

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.