Class: Twilio::REST::Chat::V1::ServiceContext::ChannelContext::InviteInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Chat::V1::ServiceContext::ChannelContext::InviteInstance
- Defined in:
- lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb
Instance Method Summary collapse
-
#account_sid ⇒ String
The unique id of the Account responsible for this member.
-
#channel_sid ⇒ String
The unique id of the Channel for this member.
-
#context ⇒ InviteContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#created_by ⇒ String
The created_by.
-
#date_created ⇒ Time
The date that this resource was created.
-
#date_updated ⇒ Time
The date that this resource was last updated.
-
#delete ⇒ Boolean
Deletes the InviteInstance.
-
#fetch ⇒ InviteInstance
Fetch a InviteInstance.
-
#identity ⇒ String
A unique string identifier for this User in this Service.
-
#initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) ⇒ InviteInstance
constructor
Initialize the InviteInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#role_sid ⇒ String
The Role assigned to this member.
-
#service_sid ⇒ String
The unique id of the Service this member belongs to.
-
#sid ⇒ String
A 34 character string that uniquely identifies this resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
An absolute URL for this member.
Constructor Details
#initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) ⇒ InviteInstance
Initialize the InviteInstance
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 261 def initialize(version, payload, service_sid: nil, channel_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'account_sid' => payload['account_sid'], 'channel_sid' => payload['channel_sid'], 'service_sid' => payload['service_sid'], 'identity' => payload['identity'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'role_sid' => payload['role_sid'], 'created_by' => payload['created_by'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'service_sid' => service_sid, 'channel_sid' => channel_sid, 'sid' => sid || @properties['sid'], } end |
Instance Method Details
#account_sid ⇒ String
Returns The unique id of the Account responsible for this member.
311 312 313 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 311 def account_sid @properties['account_sid'] end |
#channel_sid ⇒ String
Returns The unique id of the Channel for this member.
317 318 319 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 317 def channel_sid @properties['channel_sid'] end |
#context ⇒ InviteContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
291 292 293 294 295 296 297 298 299 300 301 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 291 def context unless @instance_context @instance_context = InviteContext.new( @version, @params['service_sid'], @params['channel_sid'], @params['sid'], ) end @instance_context end |
#created_by ⇒ String
Returns The created_by.
353 354 355 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 353 def created_by @properties['created_by'] end |
#date_created ⇒ Time
Returns The date that this resource was created.
335 336 337 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 335 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date that this resource was last updated.
341 342 343 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 341 def date_updated @properties['date_updated'] end |
#delete ⇒ Boolean
Deletes the InviteInstance
373 374 375 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 373 def delete context.delete end |
#fetch ⇒ InviteInstance
Fetch a InviteInstance
366 367 368 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 366 def fetch context.fetch end |
#identity ⇒ String
Returns A unique string identifier for this User in this Service.
329 330 331 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 329 def identity @properties['identity'] end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
386 387 388 389 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 386 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V1.InviteInstance #{values}>" end |
#role_sid ⇒ String
Returns The Role assigned to this member.
347 348 349 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 347 def role_sid @properties['role_sid'] end |
#service_sid ⇒ String
Returns The unique id of the Service this member belongs to.
323 324 325 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 323 def service_sid @properties['service_sid'] end |
#sid ⇒ String
Returns A 34 character string that uniquely identifies this resource.
305 306 307 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 305 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
379 380 381 382 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 379 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Chat.V1.InviteInstance #{values}>" end |
#url ⇒ String
Returns An absolute URL for this member.
359 360 361 |
# File 'lib/twilio-ruby/rest/chat/v1/service/channel/invite.rb', line 359 def url @properties['url'] end |