Class: Twilio::REST::Messaging::V1::UsecaseInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/messaging/v1/usecase.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload) ⇒ UsecaseInstance

Initialize the UsecaseInstance

Parameters:

  • version (Version)

    Version that contains the resource

  • payload (Hash)

    payload that contains response from Twilio

  • account_sid (String)

    The SID of the Account that created this Usecase resource.

  • sid (String)

    The SID of the Call resource to fetch.



91
92
93
94
95
96
97
98
# File 'lib/twilio-ruby/rest/messaging/v1/usecase.rb', line 91

def initialize(version, payload )
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'usecases' => payload['usecases'],
    }
end

Instance Method Details

#inspectObject

Provide a detailed, user friendly representation



115
116
117
# File 'lib/twilio-ruby/rest/messaging/v1/usecase.rb', line 115

def inspect
    "<Twilio.Messaging.V1.UsecaseInstance>"
end

#to_sObject

Provide a user friendly representation



109
110
111
# File 'lib/twilio-ruby/rest/messaging/v1/usecase.rb', line 109

def to_s
    "<Twilio.Messaging.V1.UsecaseInstance>"
end

#usecasesArray<Hash>

Returns Human readable use case details (usecase, description and purpose) of Messaging Service Use Cases.

Returns:

  • (Array<Hash>)

    Human readable use case details (usecase, description and purpose) of Messaging Service Use Cases.



103
104
105
# File 'lib/twilio-ruby/rest/messaging/v1/usecase.rb', line 103

def usecases
    @properties['usecases']
end