Class: Twilio::REST::Conversations::V1::ServiceContext::BindingInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Conversations::V1::ServiceContext::BindingInstance
- Defined in:
- lib/twilio-ruby/rest/conversations/v1/service/binding.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique ID of the [Account](www.twilio.com/docs/iam/api/account) responsible for this binding.
- #binding_type ⇒ BindingType
-
#chat_service_sid ⇒ String
The SID of the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource) the Binding resource is associated with.
-
#context ⇒ BindingContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#credential_sid ⇒ String
The SID of the [Credential](www.twilio.com/docs/conversations/api/credential-resource) for the binding.
-
#date_created ⇒ Time
The date that this resource was created.
-
#date_updated ⇒ Time
The date that this resource was last updated.
-
#delete ⇒ Boolean
Delete the BindingInstance.
-
#endpoint ⇒ String
The unique endpoint identifier for the Binding.
-
#fetch ⇒ BindingInstance
Fetch the BindingInstance.
-
#identity ⇒ String
The application-defined string that uniquely identifies the [Conversation User](www.twilio.com/docs/conversations/api/user-resource) within the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource).
-
#initialize(version, payload, chat_service_sid: nil, sid: nil) ⇒ BindingInstance
constructor
Initialize the BindingInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#message_types ⇒ Array<String>
The [Conversation message types](www.twilio.com/docs/chat/push-notification-configuration#push-types) the binding is subscribed to.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
An absolute API resource URL for this binding.
Constructor Details
#initialize(version, payload, chat_service_sid: nil, sid: nil) ⇒ BindingInstance
Initialize the BindingInstance
248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 248 def initialize(version, payload , chat_service_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'chat_service_sid' => payload['chat_service_sid'], 'credential_sid' => payload['credential_sid'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'endpoint' => payload['endpoint'], 'identity' => payload['identity'], 'binding_type' => payload['binding_type'], 'message_types' => payload['message_types'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'chat_service_sid' => chat_service_sid || @properties['chat_service_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique ID of the [Account](www.twilio.com/docs/iam/api/account) responsible for this binding.
290 291 292 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 290 def account_sid @properties['account_sid'] end |
#binding_type ⇒ BindingType
332 333 334 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 332 def binding_type @properties['binding_type'] end |
#chat_service_sid ⇒ String
Returns The SID of the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource) the Binding resource is associated with.
296 297 298 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 296 def chat_service_sid @properties['chat_service_sid'] end |
#context ⇒ BindingContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
275 276 277 278 279 280 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 275 def context unless @instance_context @instance_context = BindingContext.new(@version , @params['chat_service_sid'], @params['sid']) end @instance_context end |
#credential_sid ⇒ String
Returns The SID of the [Credential](www.twilio.com/docs/conversations/api/credential-resource) for the binding. See [push notification configuration](www.twilio.com/docs/chat/push-notification-configuration) for more info.
302 303 304 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 302 def credential_sid @properties['credential_sid'] end |
#date_created ⇒ Time
Returns The date that this resource was created.
308 309 310 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 308 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated.
314 315 316 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 314 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Delete the BindingInstance
351 352 353 354 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 351 def delete context.delete end |
#endpoint ⇒ String
Returns The unique endpoint identifier for the Binding. The format of this value depends on the ‘binding_type`.
320 321 322 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 320 def endpoint @properties['endpoint'] end |
#fetch ⇒ BindingInstance
Fetch the BindingInstance
359 360 361 362 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 359 def fetch context.fetch end |
#identity ⇒ String
Returns The application-defined string that uniquely identifies the [Conversation User](www.twilio.com/docs/conversations/api/user-resource) within the [Conversation Service](www.twilio.com/docs/conversations/api/service-resource). See [access tokens](www.twilio.com/docs/conversations/create-tokens) for more info.
326 327 328 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 326 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
373 374 375 376 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 373 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.BindingInstance #{values}>" end |
#message_types ⇒ Array<String>
Returns The [Conversation message types](www.twilio.com/docs/chat/push-notification-configuration#push-types) the binding is subscribed to.
338 339 340 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 338 def @properties['message_types'] end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
284 285 286 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 284 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
366 367 368 369 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 366 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Conversations.V1.BindingInstance #{values}>" end |
#url ⇒ String
Returns An absolute API resource URL for this binding.
344 345 346 |
# File 'lib/twilio-ruby/rest/conversations/v1/service/binding.rb', line 344 def url @properties['url'] end |