class SmsBackupRenderer::MediaPart
Attributes
content_type[R]
Returns the String content type for the message part such as ‘image/jpeg’.
path[R]
Returns the String file path at which the content has been stored.
Public Class Methods
new(content_type, path)
click to toggle source
# File lib/sms_backup_renderer/models.rb, line 104 def initialize(content_type, path) @content_type = content_type @path = path end