Class: Kaltura::KalturaUserEntry

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaQuizUserEntry

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_atObject

Returns the value of attribute created_at.



6584
6585
6586
# File 'lib/kaltura_types.rb', line 6584

def created_at
  @created_at
end

#entry_idObject

Returns the value of attribute entry_id.



6580
6581
6582
# File 'lib/kaltura_types.rb', line 6580

def entry_id
  @entry_id
end

#idObject

unique auto-generated identifier



6579
6580
6581
# File 'lib/kaltura_types.rb', line 6579

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



6582
6583
6584
# File 'lib/kaltura_types.rb', line 6582

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



6583
6584
6585
# File 'lib/kaltura_types.rb', line 6583

def status
  @status
end

#typeObject

Returns the value of attribute type.



6586
6587
6588
# File 'lib/kaltura_types.rb', line 6586

def type
  @type
end

#updated_atObject

Returns the value of attribute updated_at.



6585
6586
6587
# File 'lib/kaltura_types.rb', line 6585

def updated_at
  @updated_at
end

#user_idObject

Returns the value of attribute user_id.



6581
6582
6583
# File 'lib/kaltura_types.rb', line 6581

def user_id
  @user_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
# File 'lib/kaltura_types.rb', line 6601

def from_xml(xml_element)
  super
  self.id = xml_element.elements['id'].text
  self.entry_id = xml_element.elements['entryId'].text
  self.user_id = xml_element.elements['userId'].text
  self.partner_id = xml_element.elements['partnerId'].text
  self.status = xml_element.elements['status'].text
  self.created_at = xml_element.elements['createdAt'].text
  self.updated_at = xml_element.elements['updatedAt'].text
  self.type = xml_element.elements['type'].text
end