Class: Twilio::REST::Api::V2010::AccountContext::CallContext::UserDefinedMessageInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload, account_sid: nil, call_sid: nil) ⇒ UserDefinedMessageInstance

Initialize the UserDefinedMessageInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String) (defaults to: nil)

    The SID of the Account that created this UserDefinedMessage resource.

  • sid (String)

    The SID of the Call resource to fetch.



211
212
213
214
215
216
217
218
219
220
221
222
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 211

def initialize(version, payload , account_sid: nil, call_sid: nil)
    super(version)
    
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'call_sid' => payload['call_sid'],
        'sid' => payload['sid'],
        'date_created' => Twilio.deserialize_rfc2822(payload['date_created']),
    }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that created User Defined Message.

Returns:



227
228
229
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 227

def 
    @properties['account_sid']
end

#call_sidString

Returns The SID of the [Call](www.twilio.com/docs/voice/api/call-resource) the User Defined Message is associated with.

Returns:



233
234
235
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 233

def call_sid
    @properties['call_sid']
end

#date_createdTime

Returns The date that this User Defined Message was created, given in RFC 2822 format.

Returns:

  • (Time)

    The date that this User Defined Message was created, given in RFC 2822 format.



245
246
247
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 245

def date_created
    @properties['date_created']
end

#inspectObject

Provide a detailed, user friendly representation



257
258
259
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 257

def inspect
    "<Twilio.Api.V2010.UserDefinedMessageInstance>"
end

#sidString

Returns The SID that uniquely identifies this User Defined Message.

Returns:

  • (String)

    The SID that uniquely identifies this User Defined Message.



239
240
241
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 239

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



251
252
253
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 251

def to_s
    "<Twilio.Api.V2010.UserDefinedMessageInstance>"
end