lib/purecloudplatformclientv2/models/social_expression.rb in purecloudplatformclientv2-8.0.0 vs lib/purecloudplatformclientv2/models/social_expression.rb in purecloudplatformclientv2-9.0.0
- old
+ new
@@ -64,46 +64,78 @@
attr_accessor :peer_id
# Attribute mapping from ruby-style variable name to JSON key.
def self.attribute_map
{
+
:'state' => :'state',
+
:'id' => :'id',
+
:'social_media_id' => :'socialMediaId',
+
:'social_media_hub' => :'socialMediaHub',
+
:'social_user_name' => :'socialUserName',
+
:'preview_text' => :'previewText',
+
:'recording_id' => :'recordingId',
+
:'segments' => :'segments',
+
:'held' => :'held',
+
:'disconnect_type' => :'disconnectType',
+
:'start_hold_time' => :'startHoldTime',
+
:'connected_time' => :'connectedTime',
+
:'disconnected_time' => :'disconnectedTime',
+
:'provider' => :'provider',
+
:'peer_id' => :'peerId'
+
}
end
# Attribute type mapping.
def self.swagger_types
{
+
:'state' => :'String',
+
:'id' => :'String',
+
:'social_media_id' => :'String',
+
:'social_media_hub' => :'String',
+
:'social_user_name' => :'String',
+
:'preview_text' => :'String',
+
:'recording_id' => :'String',
+
:'segments' => :'Array<Segment>',
+
:'held' => :'BOOLEAN',
+
:'disconnect_type' => :'String',
+
:'start_hold_time' => :'DateTime',
+
:'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
@@ -111,113 +143,328 @@
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?(:'socialMediaId')
+
+
self.social_media_id = attributes[:'socialMediaId']
+
+
end
+
if attributes.has_key?(:'socialMediaHub')
+
+
self.social_media_hub = attributes[:'socialMediaHub']
+
+
end
+
if attributes.has_key?(:'socialUserName')
+
+
self.social_user_name = attributes[:'socialUserName']
+
+
end
+
if attributes.has_key?(:'previewText')
+
+
self.preview_text = attributes[:'previewText']
+
+
end
+
if attributes.has_key?(:'recordingId')
+
+
self.recording_id = attributes[:'recordingId']
+
+
end
+
if attributes.has_key?(:'segments')
+
if (value = attributes[:'segments']).is_a?(Array)
self.segments = value
end
+
+
+
end
+
if attributes.has_key?(:'held')
+
+
self.held = attributes[:'held']
+
+
end
+
if attributes.has_key?(:'disconnectType')
+
+
self.disconnect_type = attributes[:'disconnectType']
+
+
end
+
if attributes.has_key?(:'startHoldTime')
+
+
self.start_hold_time = attributes[:'startHoldTime']
+
+
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 &&