Class: Kaltura::KalturaResponseProfile

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

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#created_atObject

Creation time as Unix timestamp (In seconds)



8687
8688
8689
# File 'lib/kaltura_types.rb', line 8687

def created_at
  @created_at
end

#idObject

Auto generated numeric identifier



8682
8683
8684
# File 'lib/kaltura_types.rb', line 8682

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



8685
8686
8687
# File 'lib/kaltura_types.rb', line 8685

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



8690
8691
8692
# File 'lib/kaltura_types.rb', line 8690

def status
  @status
end

#system_nameObject

Unique system name



8684
8685
8686
# File 'lib/kaltura_types.rb', line 8684

def system_name
  @system_name
end

#updated_atObject

Update time as Unix timestamp (In seconds)



8689
8690
8691
# File 'lib/kaltura_types.rb', line 8689

def updated_at
  @updated_at
end

#versionObject

Returns the value of attribute version.



8691
8692
8693
# File 'lib/kaltura_types.rb', line 8691

def version
  @version
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8712
8713
8714
8715
8716
8717
8718
8719
8720
8721
8722
8723
8724
8725
8726
8727
8728
8729
8730
8731
8732
8733
8734
8735
# File 'lib/kaltura_types.rb', line 8712

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