Class: Kaltura::KalturaPartnerUsageListResponse
- Inherits:
-
KalturaListResponse
- Object
- KalturaObjectBase
- KalturaListResponse
- Kaltura::KalturaPartnerUsageListResponse
- Defined in:
- lib/kaltura_plugins/kaltura_var_console_client_plugin.rb
Instance Attribute Summary collapse
-
#objects ⇒ Object
Returns the value of attribute objects.
-
#total ⇒ Object
Returns the value of attribute total.
Attributes inherited from KalturaListResponse
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#objects ⇒ Object
Returns the value of attribute objects.
213 214 215 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 213 def objects @objects end |
#total ⇒ Object
Returns the value of attribute total.
212 213 214 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 212 def total @total end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
216 217 218 219 220 221 222 223 224 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 216 def from_xml(xml_element) super if xml_element.elements['total'] != nil self.total = KalturaClientBase.object_from_xml(xml_element.elements['total'], 'KalturaVarPartnerUsageItem') end if xml_element.elements['objects'] != nil self.objects = KalturaClientBase.object_from_xml(xml_element.elements['objects'], 'KalturaVarPartnerUsageItem') end end |