Class: Io::Flow::V0::Models::EmailNotificationAbandonedOrder
- Inherits:
-
EmailNotificationData
- Object
- EmailNotificationData
- Io::Flow::V0::Models::EmailNotificationAbandonedOrder
- Defined in:
- lib/flow_commerce/flow_api_v0_client.rb
Overview
Data about an abandoned order. Today at Flow, this can be triggered by a consumer initating checkout (without completing)
Instance Attribute Summary collapse
-
#order ⇒ Object
readonly
Returns the value of attribute order.
-
#urls ⇒ Object
readonly
Returns the value of attribute urls.
Attributes inherited from EmailNotificationData
Instance Method Summary collapse
- #copy(incoming = {}) ⇒ Object
-
#initialize(incoming = {}) ⇒ EmailNotificationAbandonedOrder
constructor
A new instance of EmailNotificationAbandonedOrder.
- #subtype_to_hash ⇒ Object
- #to_json ⇒ Object
Methods inherited from EmailNotificationData
Constructor Details
#initialize(incoming = {}) ⇒ EmailNotificationAbandonedOrder
Returns a new instance of EmailNotificationAbandonedOrder.
31082 31083 31084 31085 31086 31087 31088 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31082 def initialize(incoming={}) super(:discriminator => EmailNotificationData::Types::EMAIL_NOTIFICATION_ABANDONED_ORDER) opts = HttpClient::Helper.symbolize_keys(incoming) HttpClient::Preconditions.require_keys(opts, [:order, :urls], 'EmailNotificationAbandonedOrder') @order = (x = opts.delete(:order); x.is_a?(::Io::Flow::V0::Models::OrderSummary) ? x : ::Io::Flow::V0::Models::OrderSummary.new(x)) @urls = (x = opts.delete(:urls); x.is_a?(::Io::Flow::V0::Models::EmailAbandonedOrderUrls) ? x : ::Io::Flow::V0::Models::EmailAbandonedOrderUrls.new(x)) end |
Instance Attribute Details
#order ⇒ Object (readonly)
Returns the value of attribute order.
31080 31081 31082 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31080 def order @order end |
#urls ⇒ Object (readonly)
Returns the value of attribute urls.
31080 31081 31082 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31080 def urls @urls end |
Instance Method Details
#copy(incoming = {}) ⇒ Object
31094 31095 31096 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31094 def copy(incoming={}) EmailNotificationAbandonedOrder.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming))) end |
#subtype_to_hash ⇒ Object
31098 31099 31100 31101 31102 31103 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31098 def subtype_to_hash { :order => order.to_hash, :urls => urls.to_hash } end |
#to_json ⇒ Object
31090 31091 31092 |
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 31090 def to_json JSON.dump(to_hash) end |