lib/purecloudplatformclientv2/models/video.rb in purecloudplatformclientv2-8.0.0 vs lib/purecloudplatformclientv2/models/video.rb in purecloudplatformclientv2-9.0.0

- old
+ new

@@ -55,40 +55,66 @@ attr_accessor :peer_id # Attribute mapping from ruby-style variable name to JSON key. def self.attribute_map { + :'state' => :'state', + :'id' => :'id', + :'context' => :'context', + :'audio_muted' => :'audioMuted', + :'video_muted' => :'videoMuted', + :'sharing_screen' => :'sharingScreen', + :'peer_count' => :'peerCount', + :'disconnect_type' => :'disconnectType', + :'connected_time' => :'connectedTime', + :'disconnected_time' => :'disconnectedTime', + :'provider' => :'provider', + :'peer_id' => :'peerId' + } end # Attribute type mapping. def self.swagger_types { + :'state' => :'String', + :'id' => :'String', + :'context' => :'String', + :'audio_muted' => :'BOOLEAN', + :'video_muted' => :'BOOLEAN', + :'sharing_screen' => :'BOOLEAN', + :'peer_count' => :'Integer', + :'disconnect_type' => :'String', + :'connected_time' => :'DateTime', + :'disconnected_time' => :'DateTime', + :'provider' => :'String', + :'peer_id' => :'String' + } end # Initializes the object # @param [Hash] attributes Model attributes in the form of hash @@ -96,99 +122,272 @@ return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v} + if attributes.has_key?(:'state') + + self.state = attributes[:'state'] + + end + if attributes.has_key?(:'id') + + self.id = attributes[:'id'] + + end + if attributes.has_key?(:'context') + + self.context = attributes[:'context'] + + end + if attributes.has_key?(:'audioMuted') + + self.audio_muted = attributes[:'audioMuted'] + + end + if attributes.has_key?(:'videoMuted') + + self.video_muted = attributes[:'videoMuted'] + + end + if attributes.has_key?(:'sharingScreen') + + self.sharing_screen = attributes[:'sharingScreen'] + + end + if attributes.has_key?(:'peerCount') + + self.peer_count = attributes[:'peerCount'] + + end + if attributes.has_key?(:'disconnectType') + + self.disconnect_type = attributes[:'disconnectType'] + + end + if attributes.has_key?(:'connectedTime') + + self.connected_time = attributes[:'connectedTime'] + + end + if attributes.has_key?(:'disconnectedTime') + + self.disconnected_time = attributes[:'disconnectedTime'] + + end + if attributes.has_key?(:'provider') + + self.provider = attributes[:'provider'] + + end + if attributes.has_key?(:'peerId') + + self.peer_id = attributes[:'peerId'] + + end + end # Show invalid properties with the reasons. Usually used together with valid? # @return Array for valid properies with the reasons def list_invalid_properties invalid_properties = Array.new + + return invalid_properties end # Check to see if the all the properties in the model are valid # @return true if the model is valid def valid? + + + allowed_values = ["alerting", "dialing", "contacting", "offering", "connected", "disconnected", "terminated", "none"] if @state && !allowed_values.include?(@state) return false end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + allowed_values = ["endpoint", "client", "system", "timeout", "transfer", "transfer.conference", "transfer.consult", "transfer.forward", "transfer.noanswer", "transfer.notavailable", "transport.failure", "error", "peer", "other", "spam", "uncallable"] if @disconnect_type && !allowed_values.include?(@disconnect_type) return false end + + + + + + + + + + + + + + + + + + + end + + # Custom attribute writer method checking allowed values (enum). # @param [Object] state Object to be assigned def state=(state) allowed_values = ["alerting", "dialing", "contacting", "offering", "connected", "disconnected", "terminated", "none"] if state && !allowed_values.include?(state) fail ArgumentError, "invalid value for 'state', must be one of #{allowed_values}." end @state = state end + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + # Custom attribute writer method checking allowed values (enum). # @param [Object] disconnect_type Object to be assigned def disconnect_type=(disconnect_type) allowed_values = ["endpoint", "client", "system", "timeout", "transfer", "transfer.conference", "transfer.consult", "transfer.forward", "transfer.noanswer", "transfer.notavailable", "transport.failure", "error", "peer", "other", "spam", "uncallable"] if disconnect_type && !allowed_values.include?(disconnect_type) fail ArgumentError, "invalid value for 'disconnect_type', must be one of #{allowed_values}." end @disconnect_type = disconnect_type end + + + + + + + + + + + + + + + + + + + + + + + # Checks equality by comparing each attribute. # @param [Object] Object to be compared def ==(o) return true if self.equal?(o) self.class == o.class &&