Class: Kaltura::KalturaAccessControlProfileBaseFilter
- Inherits:
-
KalturaRelatedFilter
- Object
- KalturaObjectBase
- KalturaFilter
- KalturaRelatedFilter
- Kaltura::KalturaAccessControlProfileBaseFilter
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#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.
-
#id_equal ⇒ Object
Returns the value of attribute id_equal.
-
#id_in ⇒ Object
Returns the value of attribute id_in.
-
#system_name_equal ⇒ Object
Returns the value of attribute system_name_equal.
-
#system_name_in ⇒ Object
Returns the value of attribute system_name_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
#created_at_greater_than_or_equal ⇒ Object
Returns the value of attribute created_at_greater_than_or_equal.
10732 10733 10734 |
# File 'lib/kaltura_types.rb', line 10732 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.
10733 10734 10735 |
# File 'lib/kaltura_types.rb', line 10733 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
10728 10729 10730 |
# File 'lib/kaltura_types.rb', line 10728 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
10729 10730 10731 |
# File 'lib/kaltura_types.rb', line 10729 def id_in @id_in end |
#system_name_equal ⇒ Object
Returns the value of attribute system_name_equal.
10730 10731 10732 |
# File 'lib/kaltura_types.rb', line 10730 def system_name_equal @system_name_equal end |
#system_name_in ⇒ Object
Returns the value of attribute system_name_in.
10731 10732 10733 |
# File 'lib/kaltura_types.rb', line 10731 def system_name_in @system_name_in end |
#updated_at_greater_than_or_equal ⇒ Object
Returns the value of attribute updated_at_greater_than_or_equal.
10734 10735 10736 |
# File 'lib/kaltura_types.rb', line 10734 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.
10735 10736 10737 |
# File 'lib/kaltura_types.rb', line 10735 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 |
# File 'lib/kaltura_types.rb', line 10753 def from_xml(xml_element) super self.id_equal = xml_element.elements['idEqual'].text self.id_in = xml_element.elements['idIn'].text self.system_name_equal = xml_element.elements['systemNameEqual'].text self.system_name_in = xml_element.elements['systemNameIn'].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 end |