Class: Kaltura::KalturaDistributionProfileBaseFilter

Inherits:
KalturaFilter show all
Defined in:
lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb

Direct Known Subclasses

KalturaDistributionProfileFilter

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.



968
969
970
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 968

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.



969
970
971
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 969

def created_at_less_than_or_equal
  @created_at_less_than_or_equal
end

#id_equalObject

Returns the value of attribute id_equal.



966
967
968
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 966

def id_equal
  @id_equal
end

#id_inObject

Returns the value of attribute id_in.



967
968
969
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 967

def id_in
  @id_in
end

#status_equalObject

Returns the value of attribute status_equal.



972
973
974
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 972

def status_equal
  @status_equal
end

#status_inObject

Returns the value of attribute status_in.



973
974
975
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 973

def status_in
  @status_in
end

#updated_at_greater_than_or_equalObject

Returns the value of attribute updated_at_greater_than_or_equal.



970
971
972
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 970

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.



971
972
973
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 971

def updated_at_less_than_or_equal
  @updated_at_less_than_or_equal
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



994
995
996
997
998
999
1000
1001
1002
1003
1004
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 994

def from_xml(xml_element)
  super
  self.id_equal = xml_element.elements['idEqual'].text
  self.id_in = xml_element.elements['idIn'].text
  self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text
  self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text
  self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text
  self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text
  self.status_equal = xml_element.elements['statusEqual'].text
  self.status_in = xml_element.elements['statusIn'].text
end