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.
191 192 193 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 191 def objects @objects end |
#total ⇒ Object
Returns the value of attribute total.
190 191 192 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 190 def total @total end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
194 195 196 197 198 |
# File 'lib/kaltura_plugins/kaltura_var_console_client_plugin.rb', line 194 def from_xml(xml_element) super self.total = KalturaClientBase.object_from_xml(xml_element.elements['total'], 'KalturaVarPartnerUsageItem') self.objects = KalturaClientBase.object_from_xml(xml_element.elements['objects'], 'KalturaVarPartnerUsageItem') end |