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)
9133 9134 9135 |
# File 'lib/kaltura_types.rb', line 9133 def created_at @created_at end |
#id ⇒ Object
Auto generated numeric identifier
9128 9129 9130 |
# File 'lib/kaltura_types.rb', line 9128 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
9131 9132 9133 |
# File 'lib/kaltura_types.rb', line 9131 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
9136 9137 9138 |
# File 'lib/kaltura_types.rb', line 9136 def status @status end |
#system_name ⇒ Object
Unique system name
9130 9131 9132 |
# File 'lib/kaltura_types.rb', line 9130 def system_name @system_name end |
#updated_at ⇒ Object
Update time as Unix timestamp (In seconds)
9135 9136 9137 |
# File 'lib/kaltura_types.rb', line 9135 def updated_at @updated_at end |
#version ⇒ Object
Returns the value of attribute version.
9137 9138 9139 |
# File 'lib/kaltura_types.rb', line 9137 def version @version end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 |
# File 'lib/kaltura_types.rb', line 9158 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 |