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.
4229 4230 4231 |
# File 'lib/kaltura_types.rb', line 4229 def conversion_profile2id @conversion_profile2id end |
#created_at ⇒ Object
Returns the value of attribute created_at.
4232 4233 4234 |
# File 'lib/kaltura_types.rb', line 4232 def created_at @created_at end |
#default_admin_tags ⇒ Object
Returns the value of attribute default_admin_tags.
4236 4237 4238 |
# File 'lib/kaltura_types.rb', line 4236 def @default_admin_tags end |
#default_category ⇒ Object
Returns the value of attribute default_category.
4233 4234 4235 |
# File 'lib/kaltura_types.rb', line 4233 def default_category @default_category end |
#default_tags ⇒ Object
Returns the value of attribute default_tags.
4235 4236 4237 |
# File 'lib/kaltura_types.rb', line 4235 def @default_tags end |
#default_user_id ⇒ Object
Returns the value of attribute default_user_id.
4234 4235 4236 |
# File 'lib/kaltura_types.rb', line 4234 def default_user_id @default_user_id end |
#description ⇒ Object
Returns the value of attribute description.
4225 4226 4227 |
# File 'lib/kaltura_types.rb', line 4225 def description @description end |
#email_address ⇒ Object
Returns the value of attribute email_address.
4226 4227 4228 |
# File 'lib/kaltura_types.rb', line 4226 def email_address @email_address end |
#id ⇒ Object
Returns the value of attribute id.
4223 4224 4225 |
# File 'lib/kaltura_types.rb', line 4223 def id @id end |
#mailbox_id ⇒ Object
Returns the value of attribute mailbox_id.
4227 4228 4229 |
# File 'lib/kaltura_types.rb', line 4227 def mailbox_id @mailbox_id end |
#max_attachment_size_kbytes ⇒ Object
Returns the value of attribute max_attachment_size_kbytes.
4237 4238 4239 |
# File 'lib/kaltura_types.rb', line 4237 def @max_attachment_size_kbytes end |
#max_attachments_per_mail ⇒ Object
Returns the value of attribute max_attachments_per_mail.
4238 4239 4240 |
# File 'lib/kaltura_types.rb', line 4238 def @max_attachments_per_mail end |
#moderation_status ⇒ Object
Returns the value of attribute moderation_status.
4230 4231 4232 |
# File 'lib/kaltura_types.rb', line 4230 def moderation_status @moderation_status end |
#name ⇒ Object
Returns the value of attribute name.
4224 4225 4226 |
# File 'lib/kaltura_types.rb', line 4224 def name @name end |
#partner_id ⇒ Object
Returns the value of attribute partner_id.
4228 4229 4230 |
# File 'lib/kaltura_types.rb', line 4228 def partner_id @partner_id end |
#status ⇒ Object
Returns the value of attribute status.
4231 4232 4233 |
# File 'lib/kaltura_types.rb', line 4231 def status @status end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 |
# File 'lib/kaltura_types.rb', line 4262 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 |