Class: Kaltura::KalturaEmailIngestionProfile

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

#conversion_profile2idObject

Returns the value of attribute conversion_profile2id.



4426
4427
4428
# File 'lib/kaltura_types.rb', line 4426

def conversion_profile2id
  @conversion_profile2id
end

#created_atObject

Returns the value of attribute created_at.



4429
4430
4431
# File 'lib/kaltura_types.rb', line 4429

def created_at
  @created_at
end

#default_admin_tagsObject

Returns the value of attribute default_admin_tags.



4433
4434
4435
# File 'lib/kaltura_types.rb', line 4433

def default_admin_tags
  @default_admin_tags
end

#default_categoryObject

Returns the value of attribute default_category.



4430
4431
4432
# File 'lib/kaltura_types.rb', line 4430

def default_category
  @default_category
end

#default_tagsObject

Returns the value of attribute default_tags.



4432
4433
4434
# File 'lib/kaltura_types.rb', line 4432

def default_tags
  @default_tags
end

#default_user_idObject

Returns the value of attribute default_user_id.



4431
4432
4433
# File 'lib/kaltura_types.rb', line 4431

def default_user_id
  @default_user_id
end

#descriptionObject

Returns the value of attribute description.



4422
4423
4424
# File 'lib/kaltura_types.rb', line 4422

def description
  @description
end

#email_addressObject

Returns the value of attribute email_address.



4423
4424
4425
# File 'lib/kaltura_types.rb', line 4423

def email_address
  @email_address
end

#idObject

Returns the value of attribute id.



4420
4421
4422
# File 'lib/kaltura_types.rb', line 4420

def id
  @id
end

#mailbox_idObject

Returns the value of attribute mailbox_id.



4424
4425
4426
# File 'lib/kaltura_types.rb', line 4424

def mailbox_id
  @mailbox_id
end

#max_attachment_size_kbytesObject

Returns the value of attribute max_attachment_size_kbytes.



4434
4435
4436
# File 'lib/kaltura_types.rb', line 4434

def max_attachment_size_kbytes
  @max_attachment_size_kbytes
end

#max_attachments_per_mailObject

Returns the value of attribute max_attachments_per_mail.



4435
4436
4437
# File 'lib/kaltura_types.rb', line 4435

def max_attachments_per_mail
  @max_attachments_per_mail
end

#moderation_statusObject

Returns the value of attribute moderation_status.



4427
4428
4429
# File 'lib/kaltura_types.rb', line 4427

def moderation_status
  @moderation_status
end

#nameObject

Returns the value of attribute name.



4421
4422
4423
# File 'lib/kaltura_types.rb', line 4421

def name
  @name
end

#partner_idObject

Returns the value of attribute partner_id.



4425
4426
4427
# File 'lib/kaltura_types.rb', line 4425

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



4428
4429
4430
# File 'lib/kaltura_types.rb', line 4428

def status
  @status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
# File 'lib/kaltura_types.rb', line 4459

def from_xml(xml_element)
	super
	if xml_element.elements['id'] != nil
		self.id = xml_element.elements['id'].text
	end
	if xml_element.elements['name'] != nil
		self.name = xml_element.elements['name'].text
	end
	if xml_element.elements['description'] != nil
		self.description = xml_element.elements['description'].text
	end
	if xml_element.elements['emailAddress'] != nil
		self.email_address = xml_element.elements['emailAddress'].text
	end
	if xml_element.elements['mailboxId'] != nil
		self.mailbox_id = xml_element.elements['mailboxId'].text
	end
	if xml_element.elements['partnerId'] != nil
		self.partner_id = xml_element.elements['partnerId'].text
	end
	if xml_element.elements['conversionProfile2Id'] != nil
		self.conversion_profile2id = xml_element.elements['conversionProfile2Id'].text
	end
	if xml_element.elements['moderationStatus'] != nil
		self.moderation_status = xml_element.elements['moderationStatus'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['createdAt'] != nil
		self.created_at = xml_element.elements['createdAt'].text
	end
	if xml_element.elements['defaultCategory'] != nil
		self.default_category = xml_element.elements['defaultCategory'].text
	end
	if xml_element.elements['defaultUserId'] != nil
		self.default_user_id = xml_element.elements['defaultUserId'].text
	end
	if xml_element.elements['defaultTags'] != nil
		self.default_tags = xml_element.elements['defaultTags'].text
	end
	if xml_element.elements['defaultAdminTags'] != nil
		self.default_admin_tags = xml_element.elements['defaultAdminTags'].text
	end
	if xml_element.elements['maxAttachmentSizeKbytes'] != nil
		self.max_attachment_size_kbytes = xml_element.elements['maxAttachmentSizeKbytes'].text
	end
	if xml_element.elements['maxAttachmentsPerMail'] != nil
		self.max_attachments_per_mail = xml_element.elements['maxAttachmentsPerMail'].text
	end
end