Class: Kaltura::KalturaAnnotationBaseFilter

Inherits:
KalturaCuePointFilter show all
Defined in:
lib/kaltura_plugins/kaltura_annotation_client_plugin.rb

Direct Known Subclasses

KalturaAnnotationFilter

Instance Attribute Summary collapse

Attributes inherited from KalturaCuePointFilter

#free_text, #user_id_current, #user_id_equal_current

Attributes inherited from KalturaCuePointBaseFilter

#created_at_greater_than_or_equal, #created_at_less_than_or_equal, #cue_point_type_equal, #cue_point_type_in, #entry_id_equal, #entry_id_in, #force_stop_equal, #id_equal, #id_in, #partner_sort_value_equal, #partner_sort_value_greater_than_or_equal, #partner_sort_value_in, #partner_sort_value_less_than_or_equal, #start_time_greater_than_or_equal, #start_time_less_than_or_equal, #status_equal, #status_in, #system_name_equal, #system_name_in, #tags_like, #tags_multi_like_and, #tags_multi_like_or, #triggered_at_greater_than_or_equal, #triggered_at_less_than_or_equal, #updated_at_greater_than_or_equal, #updated_at_less_than_or_equal, #user_id_equal, #user_id_in

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

#duration_greater_than_or_equalObject

Returns the value of attribute duration_greater_than_or_equal.



131
132
133
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 131

def duration_greater_than_or_equal
  @duration_greater_than_or_equal
end

#duration_less_than_or_equalObject

Returns the value of attribute duration_less_than_or_equal.



132
133
134
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 132

def duration_less_than_or_equal
  @duration_less_than_or_equal
end

#end_time_greater_than_or_equalObject

Returns the value of attribute end_time_greater_than_or_equal.



129
130
131
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 129

def end_time_greater_than_or_equal
  @end_time_greater_than_or_equal
end

#end_time_less_than_or_equalObject

Returns the value of attribute end_time_less_than_or_equal.



130
131
132
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 130

def end_time_less_than_or_equal
  @end_time_less_than_or_equal
end

#is_public_equalObject

Returns the value of attribute is_public_equal.



133
134
135
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 133

def is_public_equal
  @is_public_equal
end

#parent_id_equalObject

Returns the value of attribute parent_id_equal.



124
125
126
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 124

def parent_id_equal
  @parent_id_equal
end

#parent_id_inObject

Returns the value of attribute parent_id_in.



125
126
127
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 125

def parent_id_in
  @parent_id_in
end

#text_likeObject

Returns the value of attribute text_like.



126
127
128
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 126

def text_like
  @text_like
end

#text_multi_like_andObject

Returns the value of attribute text_multi_like_and.



128
129
130
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 128

def text_multi_like_and
  @text_multi_like_and
end

#text_multi_like_orObject

Returns the value of attribute text_multi_like_or.



127
128
129
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 127

def text_multi_like_or
  @text_multi_like_or
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/kaltura_plugins/kaltura_annotation_client_plugin.rb', line 151

def from_xml(xml_element)
	super
	self.parent_id_equal = xml_element.elements['parentIdEqual'].text
	self.parent_id_in = xml_element.elements['parentIdIn'].text
	self.text_like = xml_element.elements['textLike'].text
	self.text_multi_like_or = xml_element.elements['textMultiLikeOr'].text
	self.text_multi_like_and = xml_element.elements['textMultiLikeAnd'].text
	self.end_time_greater_than_or_equal = xml_element.elements['endTimeGreaterThanOrEqual'].text
	self.end_time_less_than_or_equal = xml_element.elements['endTimeLessThanOrEqual'].text
	self.duration_greater_than_or_equal = xml_element.elements['durationGreaterThanOrEqual'].text
	self.duration_less_than_or_equal = xml_element.elements['durationLessThanOrEqual'].text
	self.is_public_equal = xml_element.elements['isPublicEqual'].text
end