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.



4247
4248
4249
# File 'lib/kaltura_types.rb', line 4247

def conversion_profile2id
  @conversion_profile2id
end

#created_atObject

Returns the value of attribute created_at.



4250
4251
4252
# File 'lib/kaltura_types.rb', line 4250

def created_at
  @created_at
end

#default_admin_tagsObject

Returns the value of attribute default_admin_tags.



4254
4255
4256
# File 'lib/kaltura_types.rb', line 4254

def default_admin_tags
  @default_admin_tags
end

#default_categoryObject

Returns the value of attribute default_category.



4251
4252
4253
# File 'lib/kaltura_types.rb', line 4251

def default_category
  @default_category
end

#default_tagsObject

Returns the value of attribute default_tags.



4253
4254
4255
# File 'lib/kaltura_types.rb', line 4253

def default_tags
  @default_tags
end

#default_user_idObject

Returns the value of attribute default_user_id.



4252
4253
4254
# File 'lib/kaltura_types.rb', line 4252

def default_user_id
  @default_user_id
end

#descriptionObject

Returns the value of attribute description.



4243
4244
4245
# File 'lib/kaltura_types.rb', line 4243

def description
  @description
end

#email_addressObject

Returns the value of attribute email_address.



4244
4245
4246
# File 'lib/kaltura_types.rb', line 4244

def email_address
  @email_address
end

#idObject

Returns the value of attribute id.



4241
4242
4243
# File 'lib/kaltura_types.rb', line 4241

def id
  @id
end

#mailbox_idObject

Returns the value of attribute mailbox_id.



4245
4246
4247
# File 'lib/kaltura_types.rb', line 4245

def mailbox_id
  @mailbox_id
end

#max_attachment_size_kbytesObject

Returns the value of attribute max_attachment_size_kbytes.



4255
4256
4257
# File 'lib/kaltura_types.rb', line 4255

def max_attachment_size_kbytes
  @max_attachment_size_kbytes
end

#max_attachments_per_mailObject

Returns the value of attribute max_attachments_per_mail.



4256
4257
4258
# File 'lib/kaltura_types.rb', line 4256

def max_attachments_per_mail
  @max_attachments_per_mail
end

#moderation_statusObject

Returns the value of attribute moderation_status.



4248
4249
4250
# File 'lib/kaltura_types.rb', line 4248

def moderation_status
  @moderation_status
end

#nameObject

Returns the value of attribute name.



4242
4243
4244
# File 'lib/kaltura_types.rb', line 4242

def name
  @name
end

#partner_idObject

Returns the value of attribute partner_id.



4246
4247
4248
# File 'lib/kaltura_types.rb', line 4246

def partner_id
  @partner_id
end

#statusObject

Returns the value of attribute status.



4249
4250
4251
# File 'lib/kaltura_types.rb', line 4249

def status
  @status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



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
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
# File 'lib/kaltura_types.rb', line 4280

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