Sha256: 2a38a3dd88329cff5b44d15c477412898a51c6c3094737cd8706a40a80e0c40e
Contents?: true
Size: 1.24 KB
Versions: 1
Compression:
Stored size: 1.24 KB
Contents
# # activity.rb # ConstantContact # # Copyright (c) 2013 Constant Contact. All rights reserved. module ConstantContact module Components class Activity < Component attr_accessor :id, :type, :status, :start_date, :finish_date, :file_name, :created_date, :error_count, :errors, :warnings, :contact_count # Factory method to create an Activity object from a json string # @param [Hash] props - hash of properties to create object from # @return [Activity] def self.create(props) activity = Activity.new if props props.each do |key, value| if key == 'errors' if value activity.errors = [] value.each do |error| activity.errors << Components::ActivityError.create(error) end end elsif key == 'warnings' if value activity.warnings = [] value.each do |error| activity.warnings << Components::ActivityError.create(error) end end else activity.send("#{key}=", value) end end end activity end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
constantcontact-1.0.1 | lib/constantcontact/components/activities/activity.rb |