Class: Twilio::REST::Verify::V2::TemplateInstance

Inherits:
InstanceResource show all
Defined in:
lib/twilio-ruby/rest/verify/v2/template.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload) ⇒ TemplateInstance

Initialize the TemplateInstance

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 Template resource.

  • sid (String)

    The SID of the Call resource to fetch.



169
170
171
172
173
174
175
176
177
178
179
180
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 169

def initialize(version, payload )
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'sid' => payload['sid'],
        'account_sid' => payload['account_sid'],
        'friendly_name' => payload['friendly_name'],
        'channels' => payload['channels'],
        'translations' => payload['translations'],
    }
end

Instance Method Details

#account_sidString

Returns The unique SID identifier of the Account.

Returns:

  • (String)

    The unique SID identifier of the Account.



191
192
193
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 191

def 
    @properties['account_sid']
end

#channelsArray<String>

Returns A list of channels that support the Template. Can include: sms, voice.

Returns:

  • (Array<String>)

    A list of channels that support the Template. Can include: sms, voice.



203
204
205
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 203

def channels
    @properties['channels']
end

#friendly_nameString

Returns A descriptive string that you create to describe a Template. It can be up to 32 characters long.

Returns:

  • (String)

    A descriptive string that you create to describe a Template. It can be up to 32 characters long.



197
198
199
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 197

def friendly_name
    @properties['friendly_name']
end

#inspectObject

Provide a detailed, user friendly representation



221
222
223
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 221

def inspect
    "<Twilio.Verify.V2.TemplateInstance>"
end

#sidString

Returns A 34 character string that uniquely identifies a Verification Template.

Returns:

  • (String)

    A 34 character string that uniquely identifies a Verification Template.



185
186
187
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 185

def sid
    @properties['sid']
end

#to_sObject

Provide a user friendly representation



215
216
217
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 215

def to_s
    "<Twilio.Verify.V2.TemplateInstance>"
end

#translationsHash

Returns An object that contains the different translations of the template. Every translation is identified by the language short name and contains its respective information as the approval status, text and created/modified date.

Returns:

  • (Hash)

    An object that contains the different translations of the template. Every translation is identified by the language short name and contains its respective information as the approval status, text and created/modified date.



209
210
211
# File 'lib/twilio-ruby/rest/verify/v2/template.rb', line 209

def translations
    @properties['translations']
end