class Io::Flow::V0::Models::ExportDeliveryEmail

Triggers an email notification once the requested export is ready

Attributes

email[R]

Public Class Methods

new(incoming={}) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 42854
def initialize(incoming={})
  super(:discriminator => ExportDelivery::Types::EXPORT_DELIVERY_EMAIL)
  opts = HttpClient::Helper.symbolize_keys(incoming)
  HttpClient::Preconditions.require_keys(opts, [:email], 'ExportDeliveryEmail')
  @email = HttpClient::Preconditions.assert_class('email', opts.delete(:email), String)
end

Public Instance Methods

copy(incoming={}) click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 42865
def copy(incoming={})
  ExportDeliveryEmail.new(subtype_to_hash.merge(HttpClient::Helper.symbolize_keys(incoming)))
end
subtype_to_hash() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 42869
def subtype_to_hash
  {
    :email => email
  }
end
to_json() click to toggle source
# File lib/flow_commerce/flow_api_v0_client.rb, line 42861
def to_json
  JSON.dump(to_hash)
end