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.



106
107
108
109
110
111
112
113
114
115
116
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 106

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:



121
122
123
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 121

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:



127
128
129
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 127

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.



139
140
141
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 139

def date_created
    @properties['date_created']
end

#inspectObject

Provide a detailed, user friendly representation



151
152
153
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 151

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.



133
134
135
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 133

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



145
146
147
# File 'lib/twilio-ruby/rest/api/v2010/account/call/user_defined_message.rb', line 145

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