Class: Io::Flow::V0::Models::EmailNotificationDataRefund

Inherits:
EmailNotificationData show all
Defined in:
lib/flow_commerce/flow_api_v0_client.rb

Overview

Sends an refund confirmation email to the customer (using the order.customer.email as the recipient).

Instance Attribute Summary collapse

Attributes inherited from EmailNotificationData

#discriminator

Instance Method Summary collapse

Methods inherited from EmailNotificationData

from_json, #to_hash

Constructor Details

#initialize(incoming = {}) ⇒ EmailNotificationDataRefund

Returns a new instance of EmailNotificationDataRefund.



37625
37626
37627
37628
37629
37630
37631
37632
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37625

def initialize(incoming={})
  super(:discriminator => EmailNotificationData::Types::EMAIL_NOTIFICATION_DATA_REFUND)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:order, :return_, :payment], 'EmailNotificationDataRefund')
  @order = (x = opts.delete(:order); x.is_a?(::Io::Flow::V0::Models::OrderSummary) ? x : ::Io::Flow::V0::Models::OrderSummary.new(x))
  @return_ = (x = opts.delete(:return); x.is_a?(::Io::Flow::V0::Models::OrderSummary) ? x : ::Io::Flow::V0::Models::OrderSummary.new(x))
  @payment = (x = opts.delete(:payment); x.is_a?(::Io::Flow::V0::Models::EmailPaymentSummary) ? x : ::Io::Flow::V0::Models::EmailPaymentSummary.new(x))
end

Instance Attribute Details

#orderObject (readonly)

Returns the value of attribute order.



37623
37624
37625
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37623

def order
  @order
end

#paymentObject (readonly)

Returns the value of attribute payment.



37623
37624
37625
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37623

def payment
  @payment
end

#return_Object (readonly)

Returns the value of attribute return_.



37623
37624
37625
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37623

def return_
  @return_
end

Instance Method Details

#copy(incoming = {}) ⇒ Object



37638
37639
37640
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37638

def copy(incoming={})
  EmailNotificationDataRefund.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end

#subtype_to_hashObject



37642
37643
37644
37645
37646
37647
37648
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37642

def subtype_to_hash
  {
    :order => order.to_hash,
    :return => return_.to_hash,
    :payment => payment.to_hash
  }
end

#to_jsonObject



37634
37635
37636
# File 'lib/flow_commerce/flow_api_v0_client.rb', line 37634

def to_json
  JSON.dump(to_hash)
end