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.



2436
2437
2438
# File 'lib/kaltura_types.rb', line 2436

def conversion_profile2id
  @conversion_profile2id
end

#created_atObject

Returns the value of attribute created_at.



2439
2440
2441
# File 'lib/kaltura_types.rb', line 2439

def created_at
  @created_at
end

#default_admin_tagsObject

Returns the value of attribute default_admin_tags.



2443
2444
2445
# File 'lib/kaltura_types.rb', line 2443

def default_admin_tags
  @default_admin_tags
end

#default_categoryObject

Returns the value of attribute default_category.



2440
2441
2442
# File 'lib/kaltura_types.rb', line 2440

def default_category
  @default_category
end

#default_tagsObject

Returns the value of attribute default_tags.



2442
2443
2444
# File 'lib/kaltura_types.rb', line 2442

def default_tags
  @default_tags
end

#default_user_idObject

Returns the value of attribute default_user_id.



2441
2442
2443
# File 'lib/kaltura_types.rb', line 2441

def default_user_id
  @default_user_id
end

#descriptionObject

Returns the value of attribute description.



2432
2433
2434
# File 'lib/kaltura_types.rb', line 2432

def description
  @description
end

#email_addressObject

Returns the value of attribute email_address.



2433
2434
2435
# File 'lib/kaltura_types.rb', line 2433

def email_address
  @email_address
end

#idObject

Returns the value of attribute id.



2430
2431
2432
# File 'lib/kaltura_types.rb', line 2430

def id
  @id
end

#mailbox_idObject

Returns the value of attribute mailbox_id.



2434
2435
2436
# File 'lib/kaltura_types.rb', line 2434

def mailbox_id
  @mailbox_id
end

#max_attachment_size_kbytesObject

Returns the value of attribute max_attachment_size_kbytes.



2444
2445
2446
# File 'lib/kaltura_types.rb', line 2444

def max_attachment_size_kbytes
  @max_attachment_size_kbytes
end

#max_attachments_per_mailObject

Returns the value of attribute max_attachments_per_mail.



2445
2446
2447
# File 'lib/kaltura_types.rb', line 2445

def max_attachments_per_mail
  @max_attachments_per_mail
end

#moderation_statusObject

Returns the value of attribute moderation_status.



2437
2438
2439
# File 'lib/kaltura_types.rb', line 2437

def moderation_status
  @moderation_status
end

#nameObject

Returns the value of attribute name.



2431
2432
2433
# File 'lib/kaltura_types.rb', line 2431

def name
  @name
end

#partner_idObject

Returns the value of attribute partner_id.



2435
2436
2437
# File 'lib/kaltura_types.rb', line 2435

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



2438
2439
2440
# File 'lib/kaltura_types.rb', line 2438

def status
  @status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
# File 'lib/kaltura_types.rb', line 2469

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