# UltracartClient::EmailStepStat ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **left_click_count_formatted** | **String** | click count formatted (left side) | [optional] | | **left_conversion_count** | **Integer** | click count (left side) | [optional] | | **left_conversion_count_formatted** | **String** | conversion count formatted (left/default side) | [optional] | | **left_customer_count** | **Integer** | customer count (left/default side) | [optional] | | **left_customer_count_formatted** | **String** | customer count formatted (left/default side) | [optional] | | **left_delivered_count** | **Integer** | delivered count (left side) | [optional] | | **left_delivered_count_formatted** | **String** | delivered count formatted (left side) | [optional] | | **left_order_count** | **Integer** | order count (left/default side) | [optional] | | **left_order_count_formatted** | **String** | order count formatted (left/default side) | [optional] | | **left_profit** | **Float** | profit (left/default side) | [optional] | | **left_profit_formatted** | **String** | profit formatted (left/default side) | [optional] | | **left_revenue** | **Float** | revenue (left/default side) | [optional] | | **left_revenue_formatted** | **String** | revenue formatted (left/default side) | [optional] | | **left_send_count** | **Integer** | send count (left side) | [optional] | | **left_send_count_formatted** | **String** | send count formatted (left side) | [optional] | | **left_skipped_count** | **Integer** | conversion count (left side) | [optional] | | **left_skipped_count_formatted** | **String** | skipped count formatted (left side) | [optional] | | **left_unsubscribe_count** | **Integer** | unsubscribe count (left side) | [optional] | | **left_unsubscribe_count_formatted** | **String** | unsubscribe count formatted (left side) | [optional] | | **right_conversion_count** | **Integer** | conversion count (right side) | [optional] | | **right_conversion_count_formatted** | **String** | conversion count formatted (right side) | [optional] | | **right_customer_count** | **Integer** | customer count (right side) | [optional] | | **right_customer_count_formatted** | **String** | customer count formatted (right side) | [optional] | | **right_order_count** | **Integer** | order count (right side) | [optional] | | **right_order_count_formatted** | **String** | order count formatted (right side) | [optional] | | **right_profit** | **Float** | profit (right side) | [optional] | | **right_profit_formatted** | **String** | profit formatted (right side) | [optional] | | **right_revenue** | **Float** | revenue (right side) | [optional] | | **right_revenue_formatted** | **String** | revenue formatted (right side) | [optional] | ## Example ```ruby require 'ultracart_api' instance = UltracartClient::EmailStepStat.new( left_click_count_formatted: null, left_conversion_count: null, left_conversion_count_formatted: null, left_customer_count: null, left_customer_count_formatted: null, left_delivered_count: null, left_delivered_count_formatted: null, left_order_count: null, left_order_count_formatted: null, left_profit: null, left_profit_formatted: null, left_revenue: null, left_revenue_formatted: null, left_send_count: null, left_send_count_formatted: null, left_skipped_count: null, left_skipped_count_formatted: null, left_unsubscribe_count: null, left_unsubscribe_count_formatted: null, right_conversion_count: null, right_conversion_count_formatted: null, right_customer_count: null, right_customer_count_formatted: null, right_order_count: null, right_order_count_formatted: null, right_profit: null, right_profit_formatted: null, right_revenue: null, right_revenue_formatted: null ) ```