Class: Twilio::REST::Insights::V1::ConferenceContext

Inherits:
Twilio::REST::InstanceContext show all
Defined in:
lib/twilio-ruby/rest/insights/v1/conference.rb,
lib/twilio-ruby/rest/insights/v1/conference/conference_participant.rb

Defined Under Namespace

Classes: ConferenceParticipantContext, ConferenceParticipantInstance, ConferenceParticipantInstanceMetadata, ConferenceParticipantList, ConferenceParticipantListResponse, ConferenceParticipantPage, ConferenceParticipantPageMetadata

Instance Method Summary collapse

Constructor Details

#initialize(version, conference_sid) ⇒ ConferenceContext

Initialize the ConferenceContext

Parameters:

  • version (Version)

    Version that contains the resource

  • conference_sid (String)

    The unique SID identifier of the Conference.



239
240
241
242
243
244
245
246
247
248
249
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 239

def initialize(version, conference_sid)
    super(version)
    

    # Path Solution
    @solution = { conference_sid: conference_sid,  }
    @uri = "/Conferences/#{@solution[:conference_sid]}"

    # Dependents
    @conference_participants = nil
end

Instance Method Details

#conference_participants(participant_sid = :unset) ⇒ ConferenceParticipantList, ConferenceParticipantContext

Access the conference_participants

Returns:

Raises:

  • (ArgumentError)


298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 298

def conference_participants(participant_sid=:unset)

    raise ArgumentError, 'participant_sid cannot be nil' if participant_sid.nil?

    if participant_sid != :unset
        return ConferenceParticipantContext.new(@version, @solution[:conference_sid],participant_sid )
    end

    unless @conference_participants
        @conference_participants = ConferenceParticipantList.new(
            @version, conference_sid: @solution[:conference_sid], )
    end

 @conference_participants
end

#fetchConferenceInstance

Fetch the ConferenceInstance

Returns:



253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 253

def fetch

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    payload = @version.fetch('GET', @uri, headers: headers)
    ConferenceInstance.new(
        @version,
        payload,
        conference_sid: @solution[:conference_sid],
    )
end

#fetch_with_metadataConferenceInstance

Fetch the ConferenceInstanceMetadata

Returns:



272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 272

def 

    headers = Twilio::Values.of({'Content-Type' => 'application/x-www-form-urlencoded', })
    
    
    
    
    
    response = @version.('GET', @uri, headers: headers)
    conference_instance = ConferenceInstance.new(
        @version,
        response.body,
        conference_sid: @solution[:conference_sid],
    )
    .new(
        @version,
        conference_instance,
        response.headers,
        response.status_code
    )
end

#inspectObject

Provide a detailed, user friendly representation



323
324
325
326
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 323

def inspect
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Insights.V1.ConferenceContext #{context}>"
end

#to_sObject

Provide a user friendly representation



316
317
318
319
# File 'lib/twilio-ruby/rest/insights/v1/conference.rb', line 316

def to_s
    context = @solution.map{|k, v| "#{k}: #{v}"}.join(',')
    "#<Twilio.Insights.V1.ConferenceContext #{context}>"
end