Sha256: c4a7c997e8b1833e86035d1646dbb68018f129906b89908bbd3589e190bdfba4

Contents?: true

Size: 734 Bytes

Versions: 11

Compression:

Stored size: 734 Bytes

Contents

#
# online_meeting.rb
# ConstantContact
#
# Copyright (c) 2013 Constant Contact. All rights reserved.

module ConstantContact
  module Components
    module EventSpot
      class OnlineMeeting < Component
        attr_accessor :instructions, :provider_meeting_id, :provider_type, :url

        # Factory method to create an OnlineMeeting object from a json string
        # @param [Hash] props - properties to create object from
        # @return [OnlineMeeting]
        def self.create(props)
          obj = OnlineMeeting.new
          if props
            props.each do |key, value|
              obj.send("#{key}=", value) if obj.respond_to? key
            end
          end
          obj
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
constantcontact-4.0.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-3.0.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-2.2.1 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-ruby-2.2.1 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-ruby-2.2.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-2.2.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-2.1.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-2.0.1 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-2.0.0 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-1.3.2 lib/constantcontact/components/event_spot/online_meeting.rb
constantcontact-1.2.0 lib/constantcontact/components/event_spot/online_meeting.rb