Class: Twilio::REST::Fax::V1::FaxContext::FaxMediaInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Fax::V1::FaxContext::FaxMediaInstance
- Defined in:
- lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb
Overview
PLEASE NOTE that this class contains beta products that are subject to change. Use them with caution.
Instance Method Summary collapse
-
#account_sid ⇒ String
Account SID.
-
#content_type ⇒ String
Media content type.
-
#context ⇒ FaxMediaContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date this fax media was created.
-
#date_updated ⇒ Time
The date this fax media was updated.
-
#delete ⇒ Boolean
Deletes the FaxMediaInstance.
-
#fax_sid ⇒ String
Fax SID.
-
#fetch ⇒ FaxMediaInstance
Fetch a FaxMediaInstance.
-
#initialize(version, payload, fax_sid: nil, sid: nil) ⇒ FaxMediaInstance
constructor
Initialize the FaxMediaInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#sid ⇒ String
A string that uniquely identifies this fax media.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The URL of this resource.
Constructor Details
#initialize(version, payload, fax_sid: nil, sid: nil) ⇒ FaxMediaInstance
Initialize the FaxMediaInstance
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 209 def initialize(version, payload, fax_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'fax_sid' => payload['fax_sid'], 'content_type' => payload['content_type'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'url' => payload['url'], } # Context @instance_context = nil @params = {'fax_sid' => fax_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns Account SID.
247 248 249 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 247 def account_sid @properties['account_sid'] end |
#content_type ⇒ String
Returns Media content type.
259 260 261 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 259 def content_type @properties['content_type'] end |
#context ⇒ FaxMediaContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
232 233 234 235 236 237 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 232 def context unless @instance_context @instance_context = FaxMediaContext.new(@version, @params['fax_sid'], @params['sid'], ) end @instance_context end |
#date_created ⇒ Time
Returns The date this fax media was created.
265 266 267 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 265 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date this fax media was updated.
271 272 273 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 271 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the FaxMediaInstance
291 292 293 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 291 def delete context.delete end |
#fax_sid ⇒ String
Returns Fax SID.
253 254 255 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 253 def fax_sid @properties['fax_sid'] end |
#fetch ⇒ FaxMediaInstance
Fetch a FaxMediaInstance
284 285 286 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 284 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
304 305 306 307 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 304 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Fax.V1.FaxMediaInstance #{values}>" end |
#sid ⇒ String
Returns A string that uniquely identifies this fax media.
241 242 243 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 241 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
297 298 299 300 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 297 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Fax.V1.FaxMediaInstance #{values}>" end |
#url ⇒ String
Returns The URL of this resource.
277 278 279 |
# File 'lib/twilio-ruby/rest/fax/v1/fax/fax_media.rb', line 277 def url @properties['url'] end |