Class: Twilio::REST::Accounts::V1::AuthTokenPromotionInstance

Inherits:
InstanceResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb

Instance Method Summary collapse

Constructor Details

#initialize(version, payload) ⇒ AuthTokenPromotionInstance

Initialize the AuthTokenPromotionInstance

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

  • sid (String)

    The SID of the Call resource to fetch.



122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 122

def initialize(version, payload )
    super(version)
    
    # Marshaled Properties
    @properties = { 
        'account_sid' => payload['account_sid'],
        'auth_token' => payload['auth_token'],
        '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 = {  }
end

Instance Method Details

#account_sidString

Returns The SID of the [Account](www.twilio.com/docs/iam/api/account) that the secondary Auth Token was created for.

Returns:



152
153
154
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 152

def 
    @properties['account_sid']
end

#auth_tokenString

Returns The promoted Auth Token that must be used to authenticate future API requests.

Returns:

  • (String)

    The promoted Auth Token that must be used to authenticate future API requests.



158
159
160
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 158

def auth_token
    @properties['auth_token']
end

#contextAuthTokenPromotionContext

Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context

Returns:



143
144
145
146
147
148
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 143

def context
    unless @instance_context
        @instance_context = AuthTokenPromotionContext.new(@version )
    end
    @instance_context
end

#date_createdTime

Returns The date and time in UTC when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



164
165
166
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 164

def date_created
    @properties['date_created']
end

#date_updatedTime

Returns The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.

Returns:



170
171
172
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 170

def date_updated
    @properties['date_updated']
end

#inspectObject

Provide a detailed, user friendly representation



197
198
199
200
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 197

def inspect
    values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Accounts.V1.AuthTokenPromotionInstance #{values}>"
end

#to_sObject

Provide a user friendly representation



190
191
192
193
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 190

def to_s
    values = @params.map{|k, v| "#{k}: #{v}"}.join(" ")
    "<Twilio.Accounts.V1.AuthTokenPromotionInstance #{values}>"
end

#updateAuthTokenPromotionInstance

Update the AuthTokenPromotionInstance

Returns:



183
184
185
186
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 183

def update

    context.update
end

#urlString

Returns The URI for this resource, relative to ‘accounts.twilio.com`.

Returns:



176
177
178
# File 'lib/twilio-ruby/rest/accounts/v1/auth_token_promotion.rb', line 176

def url
    @properties['url']
end