Class: Kaltura::KalturaMailJobData

Inherits:
KalturaJobData 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

#body_paramsObject

Returns the value of attribute body_params.



13535
13536
13537
# File 'lib/kaltura_types.rb', line 13535

def body_params
  @body_params
end

#campaign_idObject

Returns the value of attribute campaign_id.



13539
13540
13541
# File 'lib/kaltura_types.rb', line 13539

def campaign_id
  @campaign_id
end

#from_emailObject

Returns the value of attribute from_email.



13534
13535
13536
# File 'lib/kaltura_types.rb', line 13534

def from_email
  @from_email
end

#from_nameObject

Returns the value of attribute from_name.



13533
13534
13535
# File 'lib/kaltura_types.rb', line 13533

def from_name
  @from_name
end

#is_htmlObject

Returns the value of attribute is_html.



13541
13542
13543
# File 'lib/kaltura_types.rb', line 13541

def is_html
  @is_html
end

#languageObject

Returns the value of attribute language.



13538
13539
13540
# File 'lib/kaltura_types.rb', line 13538

def language
  @language
end

#mail_priorityObject

Returns the value of attribute mail_priority.



13527
13528
13529
# File 'lib/kaltura_types.rb', line 13527

def mail_priority
  @mail_priority
end

#mail_typeObject

Returns the value of attribute mail_type.



13526
13527
13528
# File 'lib/kaltura_types.rb', line 13526

def mail_type
  @mail_type
end

#min_send_dateObject

Returns the value of attribute min_send_date.



13540
13541
13542
# File 'lib/kaltura_types.rb', line 13540

def min_send_date
  @min_send_date
end

#recipient_emailObject

Returns the value of attribute recipient_email.



13530
13531
13532
# File 'lib/kaltura_types.rb', line 13530

def recipient_email
  @recipient_email
end

#recipient_idObject

kuserId



13532
13533
13534
# File 'lib/kaltura_types.rb', line 13532

def recipient_id
  @recipient_id
end

#recipient_nameObject

Returns the value of attribute recipient_name.



13529
13530
13531
# File 'lib/kaltura_types.rb', line 13529

def recipient_name
  @recipient_name
end

#separatorObject

Returns the value of attribute separator.



13542
13543
13544
# File 'lib/kaltura_types.rb', line 13542

def separator
  @separator
end

#statusObject

Returns the value of attribute status.



13528
13529
13530
# File 'lib/kaltura_types.rb', line 13528

def status
  @status
end

#subject_paramsObject

Returns the value of attribute subject_params.



13536
13537
13538
# File 'lib/kaltura_types.rb', line 13536

def subject_params
  @subject_params
end

#template_pathObject

Returns the value of attribute template_path.



13537
13538
13539
# File 'lib/kaltura_types.rb', line 13537

def template_path
  @template_path
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
# File 'lib/kaltura_types.rb', line 13563

def from_xml(xml_element)
	super
	if xml_element.elements['mailType'] != nil
		self.mail_type = xml_element.elements['mailType'].text
	end
	if xml_element.elements['mailPriority'] != nil
		self.mail_priority = xml_element.elements['mailPriority'].text
	end
	if xml_element.elements['status'] != nil
		self.status = xml_element.elements['status'].text
	end
	if xml_element.elements['recipientName'] != nil
		self.recipient_name = xml_element.elements['recipientName'].text
	end
	if xml_element.elements['recipientEmail'] != nil
		self.recipient_email = xml_element.elements['recipientEmail'].text
	end
	if xml_element.elements['recipientId'] != nil
		self.recipient_id = xml_element.elements['recipientId'].text
	end
	if xml_element.elements['fromName'] != nil
		self.from_name = xml_element.elements['fromName'].text
	end
	if xml_element.elements['fromEmail'] != nil
		self.from_email = xml_element.elements['fromEmail'].text
	end
	if xml_element.elements['bodyParams'] != nil
		self.body_params = xml_element.elements['bodyParams'].text
	end
	if xml_element.elements['subjectParams'] != nil
		self.subject_params = xml_element.elements['subjectParams'].text
	end
	if xml_element.elements['templatePath'] != nil
		self.template_path = xml_element.elements['templatePath'].text
	end
	if xml_element.elements['language'] != nil
		self.language = xml_element.elements['language'].text
	end
	if xml_element.elements['campaignId'] != nil
		self.campaign_id = xml_element.elements['campaignId'].text
	end
	if xml_element.elements['minSendDate'] != nil
		self.min_send_date = xml_element.elements['minSendDate'].text
	end
	if xml_element.elements['isHtml'] != nil
		self.is_html = xml_element.elements['isHtml'].text
	end
	if xml_element.elements['separator'] != nil
		self.separator = xml_element.elements['separator'].text
	end
end