Class: Kaltura::KalturaStorageProfileBaseFilter
- Inherits:
-
KalturaFilter
- Object
- KalturaObjectBase
- KalturaFilter
- Kaltura::KalturaStorageProfileBaseFilter
- 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.
-
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
-
#partner_id_in ⇒ Object
Returns the value of attribute partner_id_in.
-
#protocol_equal ⇒ Object
Returns the value of attribute protocol_equal.
-
#protocol_in ⇒ Object
Returns the value of attribute protocol_in.
-
#status_equal ⇒ Object
Returns the value of attribute status_equal.
-
#status_in ⇒ Object
Returns the value of attribute status_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.
10029 10030 10031 |
# File 'lib/kaltura_types.rb', line 10029 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.
10030 10031 10032 |
# File 'lib/kaltura_types.rb', line 10030 def created_at_less_than_or_equal @created_at_less_than_or_equal end |
#id_equal ⇒ Object
Returns the value of attribute id_equal.
10027 10028 10029 |
# File 'lib/kaltura_types.rb', line 10027 def id_equal @id_equal end |
#id_in ⇒ Object
Returns the value of attribute id_in.
10028 10029 10030 |
# File 'lib/kaltura_types.rb', line 10028 def id_in @id_in end |
#partner_id_equal ⇒ Object
Returns the value of attribute partner_id_equal.
10033 10034 10035 |
# File 'lib/kaltura_types.rb', line 10033 def partner_id_equal @partner_id_equal end |
#partner_id_in ⇒ Object
Returns the value of attribute partner_id_in.
10034 10035 10036 |
# File 'lib/kaltura_types.rb', line 10034 def partner_id_in @partner_id_in end |
#protocol_equal ⇒ Object
Returns the value of attribute protocol_equal.
10039 10040 10041 |
# File 'lib/kaltura_types.rb', line 10039 def protocol_equal @protocol_equal end |
#protocol_in ⇒ Object
Returns the value of attribute protocol_in.
10040 10041 10042 |
# File 'lib/kaltura_types.rb', line 10040 def protocol_in @protocol_in end |
#status_equal ⇒ Object
Returns the value of attribute status_equal.
10037 10038 10039 |
# File 'lib/kaltura_types.rb', line 10037 def status_equal @status_equal end |
#status_in ⇒ Object
Returns the value of attribute status_in.
10038 10039 10040 |
# File 'lib/kaltura_types.rb', line 10038 def status_in @status_in end |
#system_name_equal ⇒ Object
Returns the value of attribute system_name_equal.
10035 10036 10037 |
# File 'lib/kaltura_types.rb', line 10035 def system_name_equal @system_name_equal end |
#system_name_in ⇒ Object
Returns the value of attribute system_name_in.
10036 10037 10038 |
# File 'lib/kaltura_types.rb', line 10036 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.
10031 10032 10033 |
# File 'lib/kaltura_types.rb', line 10031 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.
10032 10033 10034 |
# File 'lib/kaltura_types.rb', line 10032 def updated_at_less_than_or_equal @updated_at_less_than_or_equal end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 |
# File 'lib/kaltura_types.rb', line 10064 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.partner_id_equal = xml_element.elements['partnerIdEqual'].text self.partner_id_in = xml_element.elements['partnerIdIn'].text self.system_name_equal = xml_element.elements['systemNameEqual'].text self.system_name_in = xml_element.elements['systemNameIn'].text self.status_equal = xml_element.elements['statusEqual'].text self.status_in = xml_element.elements['statusIn'].text self.protocol_equal = xml_element.elements['protocolEqual'].text self.protocol_in = xml_element.elements['protocolIn'].text end |