Class: Kaltura::KalturaDynamicEmailContents
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaDynamicEmailContents
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#email_body ⇒ Object
The body of the customized email.
-
#email_subject ⇒ Object
The subject of the customized email.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#email_body ⇒ Object
The body of the customized email
4233 4234 4235 |
# File 'lib/kaltura_types.rb', line 4233 def email_body @email_body end |
#email_subject ⇒ Object
The subject of the customized email
4231 4232 4233 |
# File 'lib/kaltura_types.rb', line 4231 def email_subject @email_subject end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4236 4237 4238 4239 4240 4241 4242 4243 4244 |
# File 'lib/kaltura_types.rb', line 4236 def from_xml(xml_element) super if xml_element.elements['emailSubject'] != nil self.email_subject = xml_element.elements['emailSubject'].text end if xml_element.elements['emailBody'] != nil self.email_body = xml_element.elements['emailBody'].text end end |