Class: Kaltura::KalturaResponseProfile
- Inherits:
-
KalturaDetachedResponseProfile
- Object
- KalturaObjectBase
- KalturaBaseResponseProfile
- KalturaDetachedResponseProfile
- Kaltura::KalturaResponseProfile
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Creation time as Unix timestamp (In seconds).
-
#id ⇒ Object
Auto generated numeric identifier.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#status ⇒ Object
Returns the value of attribute status.
-
#system_name ⇒ Object
Unique system name.
-
#updated_at ⇒ Object
Update time as Unix timestamp (In seconds).
-
#version ⇒ Object
Returns the value of attribute version.
Attributes inherited from KalturaDetachedResponseProfile
#fields, #filter, #mappings, #name, #pager, #related_profiles, #type
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Creation time as Unix timestamp (In seconds)
8899 8900 8901 |
# File 'lib/kaltura_types.rb', line 8899 def created_at @created_at end |
#id ⇒ Object
Auto generated numeric identifier
8894 8895 8896 |
# File 'lib/kaltura_types.rb', line 8894 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
8897 8898 8899 |
# File 'lib/kaltura_types.rb', line 8897 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
8902 8903 8904 |
# File 'lib/kaltura_types.rb', line 8902 def status @status end |
#system_name ⇒ Object
Unique system name
8896 8897 8898 |
# File 'lib/kaltura_types.rb', line 8896 def system_name @system_name end |
#updated_at ⇒ Object
Update time as Unix timestamp (In seconds)
8901 8902 8903 |
# File 'lib/kaltura_types.rb', line 8901 def updated_at @updated_at end |
#version ⇒ Object
Returns the value of attribute version.
8903 8904 8905 |
# File 'lib/kaltura_types.rb', line 8903 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 |
# File 'lib/kaltura_types.rb', line 8924 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['systemName'] != nil self.system_name = xml_element.elements['systemName'].text end if xml_element.elements['partnerId'] != nil self.partner_id = xml_element.elements['partnerId'].text end if xml_element.elements['createdAt'] != nil self.created_at = xml_element.elements['createdAt'].text end if xml_element.elements['updatedAt'] != nil self.updated_at = xml_element.elements['updatedAt'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].text end if xml_element.elements['version'] != nil self.version = xml_element.elements['version'].text end end |