Class: Kaltura::KalturaGroupUser
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaGroupUser
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds).
-
#creation_mode ⇒ Object
Returns the value of attribute creation_mode.
-
#group_id ⇒ Object
Returns the value of attribute group_id.
-
#id ⇒ Object
Returns the value of attribute id.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#status ⇒ Object
Returns the value of attribute status.
-
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds).
-
#user_id ⇒ Object
Returns the value of attribute user_id.
-
#user_role ⇒ Object
Returns the value of attribute user_role.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#created_at ⇒ Object
Creation date as Unix timestamp (In seconds)
5458 5459 5460 |
# File 'lib/kaltura_types.rb', line 5458 def created_at @created_at end |
#creation_mode ⇒ Object
Returns the value of attribute creation_mode.
5461 5462 5463 |
# File 'lib/kaltura_types.rb', line 5461 def creation_mode @creation_mode end |
#group_id ⇒ Object
Returns the value of attribute group_id.
5454 5455 5456 |
# File 'lib/kaltura_types.rb', line 5454 def group_id @group_id end |
#id ⇒ Object
Returns the value of attribute id.
5452 5453 5454 |
# File 'lib/kaltura_types.rb', line 5452 def id @id end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
5456 5457 5458 |
# File 'lib/kaltura_types.rb', line 5456 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
5455 5456 5457 |
# File 'lib/kaltura_types.rb', line 5455 def status @status end |
#updated_at ⇒ Object
Last update date as Unix timestamp (In seconds)
5460 5461 5462 |
# File 'lib/kaltura_types.rb', line 5460 def updated_at @updated_at end |
#user_id ⇒ Object
Returns the value of attribute user_id.
5453 5454 5455 |
# File 'lib/kaltura_types.rb', line 5453 def user_id @user_id end |
#user_role ⇒ Object
Returns the value of attribute user_role.
5462 5463 5464 |
# File 'lib/kaltura_types.rb', line 5462 def user_role @user_role end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 |
# File 'lib/kaltura_types.rb', line 5483 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['userId'] != nil self.user_id = xml_element.elements['userId'].text end if xml_element.elements['groupId'] != nil self.group_id = xml_element.elements['groupId'].text end if xml_element.elements['status'] != nil self.status = xml_element.elements['status'].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['creationMode'] != nil self.creation_mode = xml_element.elements['creationMode'].text end if xml_element.elements['userRole'] != nil self.user_role = xml_element.elements['userRole'].text end end |