Class: Kaltura::KalturaLiveChannelSegmentBaseFilter
- Inherits:
-
KalturaRelatedFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- Kaltura::KalturaLiveChannelSegmentBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#channel_id_equal ⇒ Object
Returns the value of attribute channel_id_equal.
-
#channel_id_in ⇒ Object
Returns the value of attribute channel_id_in.
-
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
-
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
-
#start_time_greater_than_or_equal ⇒ Object
Returns the value of attribute start_time_greater_than_or_equal.
-
#start_time_less_than_or_equal ⇒ Object
Returns the value of attribute start_time_less_than_or_equal.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_in.
-
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
-
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
Attributes inherited from KalturaFilter
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#channel_id_equal ⇒ Object
Returns the value of attribute channel_id_equal.
17198 17199 17200 |
# File 'lib/kaltura_types.rb', line 17198 def channel_id_equal @channel_id_equal end |
#channel_id_in ⇒ Object
Returns the value of attribute channel_id_in.
17199 17200 17201 |
# File 'lib/kaltura_types.rb', line 17199 def channel_id_in @channel_id_in end |
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
17192 17193 17194 |
# File 'lib/kaltura_types.rb', line 17192 def created_at_greater_than_or_equal @created_at_greater_than_or_equal end |
#created_at_less_than_or_equal ⇒ Object
Returns the value of attribute created_at_less_than_or_equal.
17193 17194 17195 |
# File 'lib/kaltura_types.rb', line 17193 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#start_time_greater_than_or_equal ⇒ Object
Returns the value of attribute start_time_greater_than_or_equal.
17200 17201 17202 |
# File 'lib/kaltura_types.rb', line 17200 def start_time_greater_than_or_equal @start_time_greater_than_or_equal end |
#start_time_less_than_or_equal ⇒ Object
Returns the value of attribute start_time_less_than_or_equal.
17201 17202 17203 |
# File 'lib/kaltura_types.rb', line 17201 def start_time_less_than_or_equal @start_time_less_than_or_equal end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
17196 17197 17198 |
# File 'lib/kaltura_types.rb', line 17196 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
17197 17198 17199 |
# File 'lib/kaltura_types.rb', line 17197 def status_in @status_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
17194 17195 17196 |
# File 'lib/kaltura_types.rb', line 17194 def updated_at_greater_than_or_equal @updated_at_greater_than_or_equal end |
#updated_at_less_than_or_equal ⇒ Object
Returns the value of attribute updated_at_less_than_or_equal.
17195 17196 17197 |
# File 'lib/kaltura_types.rb', line 17195 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 |
# File 'lib/kaltura_types.rb', line 17222 def from_xml(xml_element) super if xml_element.elements['createdAtGreaterThanOrEqual'] != nil self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text end if xml_element.elements['createdAtLessThanOrEqual'] != nil self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text end if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text end if xml_element.elements['updatedAtLessThanOrEqual'] != nil self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text end if xml_element.elements['statusEqual'] != nil self.status_equal = xml_element.elements['statusEqual'].text end if xml_element.elements['statusIn'] != nil self.status_in = xml_element.elements['statusIn'].text end if xml_element.elements['channelIdEqual'] != nil self.channel_id_equal = xml_element.elements['channelIdEqual'].text end if xml_element.elements['channelIdIn'] != nil self.channel_id_in = xml_element.elements['channelIdIn'].text end if xml_element.elements['startTimeGreaterThanOrEqual'] != nil self.start_time_greater_than_or_equal = xml_element.elements['startTimeGreaterThanOrEqual'].text end if xml_element.elements['startTimeLessThanOrEqual'] != nil self.start_time_less_than_or_equal = xml_element.elements['startTimeLessThanOrEqual'].text end end |