Class: Kaltura::KalturaScheduleEventResourceBaseFilter

Inherits:
KalturaRelatedFilter show all
Defined in:
lib/kaltura_plugins/kaltura_schedule_client_plugin.rb

Direct Known Subclasses

KalturaScheduleEventResourceFilter

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

#created_at_greater_than_or_equalObject

Returns the value of attribute created_at_greater_than_or_equal.



989
990
991
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 989

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.



990
991
992
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 990

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#event_id_equalObject

Returns the value of attribute event_id_equal.



985
986
987
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 985

def event_id_equal
  @event_id_equal
end

#event_id_inObject

Returns the value of attribute event_id_in.



986
987
988
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 986

def event_id_in
  @event_id_in
end

#resource_id_equalObject

Returns the value of attribute resource_id_equal.



987
988
989
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 987

def resource_id_equal
  @resource_id_equal
end

#resource_id_inObject

Returns the value of attribute resource_id_in.



988
989
990
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 988

def resource_id_in
  @resource_id_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



991
992
993
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 991

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.



992
993
994
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 992

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
# File 'lib/kaltura_plugins/kaltura_schedule_client_plugin.rb', line 1013

def from_xml(xml_element)
  super
  if xml_element.elements['eventIdEqual'] != nil
    self.event_id_equal = xml_element.elements['eventIdEqual'].text
  end
  if xml_element.elements['eventIdIn'] != nil
    self.event_id_in = xml_element.elements['eventIdIn'].text
  end
  if xml_element.elements['resourceIdEqual'] != nil
    self.resource_id_equal = xml_element.elements['resourceIdEqual'].text
  end
  if xml_element.elements['resourceIdIn'] != nil
    self.resource_id_in = xml_element.elements['resourceIdIn'].text
  end
  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
end