Method: PureCloud::Video#initialize
- Defined in:
- lib/purecloud/models/video.rb
#initialize(attributes = {}) ⇒ Video
Returns a new instance of Video.
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/purecloud/models/video.rb', line 65 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'state'] self.state = attributes[:'state'] end if attributes[:'id'] self.id = attributes[:'id'] end if attributes[:'context'] self.context = attributes[:'context'] end if attributes[:'audioMuted'] self.audio_muted = attributes[:'audioMuted'] else self.audio_muted = false end if attributes[:'videoMuted'] self.video_muted = attributes[:'videoMuted'] else self.video_muted = false end if attributes[:'sharingScreen'] self.sharing_screen = attributes[:'sharingScreen'] else self.sharing_screen = false end if attributes[:'peerCount'] self.peer_count = attributes[:'peerCount'] end if attributes[:'disconnectType'] self.disconnect_type = attributes[:'disconnectType'] end if attributes[:'connectedTime'] self.connected_time = attributes[:'connectedTime'] end end |