Class: Kaltura::KalturaLiveChannelSegmentBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaLiveChannelSegmentFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaFilter

#advanced_search, #order_by

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#channel_id_equalObject

Returns the value of attribute channel_id_equal.



17103
17104
17105
# File 'lib/kaltura_types.rb', line 17103

def channel_id_equal
  @channel_id_equal
end

#channel_id_inObject

Returns the value of attribute channel_id_in.



17104
17105
17106
# File 'lib/kaltura_types.rb', line 17104

def channel_id_in
  @channel_id_in
end

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



17097
17098
17099
# File 'lib/kaltura_types.rb', line 17097

def created_at_greater_than_or_equal
  @created_at_greater_than_or_equal
end

#created_at_less_than_or_equalObject

Returns the value of attribute created_at_less_than_or_equal.



17098
17099
17100
# File 'lib/kaltura_types.rb', line 17098

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#start_time_greater_than_or_equalObject

Returns the value of attribute start_time_greater_than_or_equal.



17105
17106
17107
# File 'lib/kaltura_types.rb', line 17105

def start_time_greater_than_or_equal
  @start_time_greater_than_or_equal
end

#start_time_less_than_or_equalObject

Returns the value of attribute start_time_less_than_or_equal.



17106
17107
17108
# File 'lib/kaltura_types.rb', line 17106

def start_time_less_than_or_equal
  @start_time_less_than_or_equal
end

#status_equalObject

Returns the value of attribute status_equal.



17101
17102
17103
# File 'lib/kaltura_types.rb', line 17101

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



17102
17103
17104
# File 'lib/kaltura_types.rb', line 17102

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



17099
17100
17101
# File 'lib/kaltura_types.rb', line 17099

def updated_at_greater_than_or_equal
  @updated_at_greater_than_or_equal
end

#updated_at_less_than_or_equalObject

Returns the value of attribute updated_at_less_than_or_equal.



17100
17101
17102
# File 'lib/kaltura_types.rb', line 17100

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17127
17128
17129
17130
17131
17132
17133
17134
17135
17136
17137
17138
17139
17140
17141
17142
17143
17144
17145
17146
17147
17148
17149
17150
17151
17152
17153
17154
17155
17156
17157
17158
17159
# File 'lib/kaltura_types.rb', line 17127

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