Class: Twilio::REST::Video::V1::RoomContext::ParticipantContext::PublishedTrackInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Video::V1::RoomContext::ParticipantContext::PublishedTrackInstance
- Defined in:
- lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb
Instance Method Summary collapse
-
#context ⇒ PublishedTrackContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#date_created ⇒ Time
The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#date_updated ⇒ Time
The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
-
#enabled ⇒ Boolean
Whether the track is enabled.
-
#fetch ⇒ PublishedTrackInstance
Fetch the PublishedTrackInstance.
-
#initialize(version, payload, room_sid: nil, participant_sid: nil, sid: nil) ⇒ PublishedTrackInstance
constructor
Initialize the PublishedTrackInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
- #kind ⇒ Kind
-
#name ⇒ String
The track name.
-
#participant_sid ⇒ String
The SID of the Participant resource with the published track.
-
#room_sid ⇒ String
The SID of the Room resource where the track is published.
-
#sid ⇒ String
The unique string that we created to identify the RoomParticipantPublishedTrack resource.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#url ⇒ String
The absolute URL of the resource.
Constructor Details
#initialize(version, payload, room_sid: nil, participant_sid: nil, sid: nil) ⇒ PublishedTrackInstance
Initialize the PublishedTrackInstance
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 225 def initialize(version, payload , room_sid: nil, participant_sid: nil, sid: nil) super(version) # Marshaled Properties @properties = { 'sid' => payload['sid'], 'participant_sid' => payload['participant_sid'], 'room_sid' => payload['room_sid'], 'name' => payload['name'], 'date_created' => Twilio.deserialize_iso8601_datetime(payload['date_created']), 'date_updated' => Twilio.deserialize_iso8601_datetime(payload['date_updated']), 'enabled' => payload['enabled'], 'kind' => payload['kind'], 'url' => payload['url'], } # Context @instance_context = nil @params = { 'room_sid' => room_sid || @properties['room_sid'] ,'participant_sid' => participant_sid || @properties['participant_sid'] ,'sid' => sid || @properties['sid'] , } end |
Instance Method Details
#context ⇒ PublishedTrackContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
250 251 252 253 254 255 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 250 def context unless @instance_context @instance_context = PublishedTrackContext.new(@version , @params['room_sid'], @params['participant_sid'], @params['sid']) end @instance_context end |
#date_created ⇒ Time
Returns The date and time in GMT when the resource was created specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
283 284 285 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 283 def date_created @properties['date_created'] end |
#date_updated ⇒ Time
Returns The date and time in GMT when the resource was last updated specified in [ISO 8601](en.wikipedia.org/wiki/ISO_8601) format.
289 290 291 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 289 def date_updated @properties['date_updated'] end |
#enabled ⇒ Boolean
Returns Whether the track is enabled.
295 296 297 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 295 def enabled @properties['enabled'] end |
#fetch ⇒ PublishedTrackInstance
Fetch the PublishedTrackInstance
314 315 316 317 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 314 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
328 329 330 331 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 328 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Video.V1.PublishedTrackInstance #{values}>" end |
#kind ⇒ Kind
301 302 303 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 301 def kind @properties['kind'] end |
#name ⇒ String
Returns The track name. Must be no more than 128 characters, and be unique among the participant’s published tracks.
277 278 279 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 277 def name @properties['name'] end |
#participant_sid ⇒ String
Returns The SID of the Participant resource with the published track.
265 266 267 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 265 def participant_sid @properties['participant_sid'] end |
#room_sid ⇒ String
Returns The SID of the Room resource where the track is published.
271 272 273 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 271 def room_sid @properties['room_sid'] end |
#sid ⇒ String
Returns The unique string that we created to identify the RoomParticipantPublishedTrack resource.
259 260 261 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 259 def sid @properties['sid'] end |
#to_s ⇒ Object
Provide a user friendly representation
321 322 323 324 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 321 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Video.V1.PublishedTrackInstance #{values}>" end |
#url ⇒ String
Returns The absolute URL of the resource.
307 308 309 |
# File 'lib/twilio-ruby/rest/video/v1/room/participant/published_track.rb', line 307 def url @properties['url'] end |