/**
  * Refund an ecommerce transaction
  *
  * @since 1.0.0
  *
  * @param string $id The id of the transaction to refund
  *
  * @return void
  */
 public static function refundTransaction($id)
 {
     GTMdata::pushRefundTransaction($id);
 }