Class: Kaltura::KalturaEmailIngestionProfile
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaEmailIngestionProfile
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#conversion_profile2id ⇒ Object
Returns the value of attribute conversion_profile2id.
-
#created_at ⇒ Object
Returns the value of attribute created_at.
-
#default_admin_tags ⇒ Object
Returns the value of attribute default_admin_tags.
-
#default_category ⇒ Object
Returns the value of attribute default_category.
-
#default_tags ⇒ Object
Returns the value of attribute default_tags.
-
#default_user_id ⇒ Object
Returns the value of attribute default_user_id.
-
#description ⇒ Object
Returns the value of attribute description.
-
#email_address ⇒ Object
Returns the value of attribute email_address.
-
#id ⇒ Object
Returns the value of attribute id.
-
#mailbox_id ⇒ Object
Returns the value of attribute mailbox_id.
-
#max_attachment_size_kbytes ⇒ Object
Returns the value of attribute max_attachment_size_kbytes.
-
#max_attachments_per_mail ⇒ Object
Returns the value of attribute max_attachments_per_mail.
-
#moderation_status ⇒ Object
Returns the value of attribute moderation_status.
-
#name ⇒ Object
Returns the value of attribute name.
-
#partner_id ⇒ Object
Returns the value of attribute partner_id.
-
#status ⇒ Object
Returns the value of attribute status.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#conversion_profile2id ⇒ Object
Returns the value of attribute conversion_profile2id.
4452 4453 4454 |
# File 'lib/kaltura_types.rb', line 4452 def conversion_profile2id @conversion_profile2id end |
#created_at ⇒ Object
Returns the value of attribute created_at.
4455 4456 4457 |
# File 'lib/kaltura_types.rb', line 4455 def created_at @created_at end |
#default_admin_tags ⇒ Object
Returns the value of attribute default_admin_tags.
4459 4460 4461 |
# File 'lib/kaltura_types.rb', line 4459 def @default_admin_tags end |
#default_category ⇒ Object
Returns the value of attribute default_category.
4456 4457 4458 |
# File 'lib/kaltura_types.rb', line 4456 def default_category @default_category end |
#default_tags ⇒ Object
Returns the value of attribute default_tags.
4458 4459 4460 |
# File 'lib/kaltura_types.rb', line 4458 def @default_tags end |
#default_user_id ⇒ Object
Returns the value of attribute default_user_id.
4457 4458 4459 |
# File 'lib/kaltura_types.rb', line 4457 def default_user_id @default_user_id end |
#description ⇒ Object
Returns the value of attribute description.
4448 4449 4450 |
# File 'lib/kaltura_types.rb', line 4448 def description @description end |
#email_address ⇒ Object
Returns the value of attribute email_address.
4449 4450 4451 |
# File 'lib/kaltura_types.rb', line 4449 def email_address @email_address end |
#id ⇒ Object
Returns the value of attribute id.
4446 4447 4448 |
# File 'lib/kaltura_types.rb', line 4446 def id @id end |
#mailbox_id ⇒ Object
Returns the value of attribute mailbox_id.
4450 4451 4452 |
# File 'lib/kaltura_types.rb', line 4450 def mailbox_id @mailbox_id end |
#max_attachment_size_kbytes ⇒ Object
Returns the value of attribute max_attachment_size_kbytes.
4460 4461 4462 |
# File 'lib/kaltura_types.rb', line 4460 def @max_attachment_size_kbytes end |
#max_attachments_per_mail ⇒ Object
Returns the value of attribute max_attachments_per_mail.
4461 4462 4463 |
# File 'lib/kaltura_types.rb', line 4461 def @max_attachments_per_mail end |
#moderation_status ⇒ Object
Returns the value of attribute moderation_status.
4453 4454 4455 |
# File 'lib/kaltura_types.rb', line 4453 def moderation_status @moderation_status end |
#name ⇒ Object
Returns the value of attribute name.
4447 4448 4449 |
# File 'lib/kaltura_types.rb', line 4447 def name @name end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
4451 4452 4453 |
# File 'lib/kaltura_types.rb', line 4451 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
4454 4455 4456 |
# File 'lib/kaltura_types.rb', line 4454 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
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 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 |
# File 'lib/kaltura_types.rb', line 4485 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. = xml_element.elements['defaultTags'].text end if xml_element.elements['defaultAdminTags'] != nil self. = xml_element.elements['defaultAdminTags'].text end if xml_element.elements['maxAttachmentSizeKbytes'] != nil self. = xml_element.elements['maxAttachmentSizeKbytes'].text end if xml_element.elements['maxAttachmentsPerMail'] != nil self. = xml_element.elements['maxAttachmentsPerMail'].text end end |