Class: Kaltura::KalturaPermissionItem

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

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.



8274
8275
8276
# File 'lib/kaltura_types.rb', line 8274

def created_at
  @created_at
end

#idObject

Returns the value of attribute id.



8270
8271
8272
# File 'lib/kaltura_types.rb', line 8270

def id
  @id
end

#partner_idObject

Returns the value of attribute partner_id.



8272
8273
8274
# File 'lib/kaltura_types.rb', line 8272

def partner_id
  @partner_id
end

#tagsObject

Returns the value of attribute tags.



8273
8274
8275
# File 'lib/kaltura_types.rb', line 8273

def tags
  @tags
end

#typeObject

Returns the value of attribute type.



8271
8272
8273
# File 'lib/kaltura_types.rb', line 8271

def type
  @type
end

#updated_atObject

Returns the value of attribute updated_at.



8275
8276
8277
# File 'lib/kaltura_types.rb', line 8275

def updated_at
  @updated_at
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8290
8291
8292
8293
8294
8295
8296
8297
8298
8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
# File 'lib/kaltura_types.rb', line 8290

def from_xml(xml_element)
  super
  if xml_element.elements['id'] != nil
    self.id = xml_element.elements['id'].text
  end
  if xml_element.elements['type'] != nil
    self.type = xml_element.elements['type'].text
  end
  if xml_element.elements['partnerId'] != nil
    self.partner_id = xml_element.elements['partnerId'].text
  end
  if xml_element.elements['tags'] != nil
    self.tags = xml_element.elements['tags'].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
end