Class: Kaltura::KalturaDetachedResponseProfile
- Inherits:
-
KalturaBaseResponseProfile
- Object
- KalturaObjectBase
- KalturaBaseResponseProfile
- Kaltura::KalturaDetachedResponseProfile
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#fields ⇒ Object
Comma separated fields list to be included or excluded.
-
#filter ⇒ Object
Returns the value of attribute filter.
-
#mappings ⇒ Object
Returns the value of attribute mappings.
-
#name ⇒ Object
Friendly name.
-
#pager ⇒ Object
Returns the value of attribute pager.
-
#related_profiles ⇒ Object
Returns the value of attribute related_profiles.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#fields ⇒ Object
Comma separated fields list to be included or excluded
2406 2407 2408 |
# File 'lib/kaltura_types.rb', line 2406 def fields @fields end |
#filter ⇒ Object
Returns the value of attribute filter.
2407 2408 2409 |
# File 'lib/kaltura_types.rb', line 2407 def filter @filter end |
#mappings ⇒ Object
Returns the value of attribute mappings.
2410 2411 2412 |
# File 'lib/kaltura_types.rb', line 2410 def mappings @mappings end |
#name ⇒ Object
Friendly name
2402 2403 2404 |
# File 'lib/kaltura_types.rb', line 2402 def name @name end |
#pager ⇒ Object
Returns the value of attribute pager.
2408 2409 2410 |
# File 'lib/kaltura_types.rb', line 2408 def pager @pager end |
#related_profiles ⇒ Object
Returns the value of attribute related_profiles.
2409 2410 2411 |
# File 'lib/kaltura_types.rb', line 2409 def end |
#type ⇒ Object
Returns the value of attribute type.
2403 2404 2405 |
# File 'lib/kaltura_types.rb', line 2403 def type @type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 |
# File 'lib/kaltura_types.rb', line 2416 def from_xml(xml_element) super self.name = xml_element.elements['name'].text self.type = xml_element.elements['type'].text self.fields = xml_element.elements['fields'].text self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaRelatedFilter') self.pager = KalturaClientBase.object_from_xml(xml_element.elements['pager'], 'KalturaFilterPager') self. = KalturaClientBase.object_from_xml(xml_element.elements['relatedProfiles'], 'KalturaDetachedResponseProfile') self.mappings = KalturaClientBase.object_from_xml(xml_element.elements['mappings'], 'KalturaResponseProfileMapping') end |