lib/twilio-ruby/rest/insights/v1/room.rb in twilio-ruby-5.45.1 vs lib/twilio-ruby/rest/insights/v1/room.rb in twilio-ruby-5.46.0

- old
+ new

@@ -27,12 +27,12 @@ ## # Lists RoomInstance records from the API as a list. # Unlike stream(), this operation is eager and will load `limit` records into # memory before returning. - # @param [room.RoomType] room_type The room_type - # @param [room.Codec] codec The codec + # @param [Array[room.RoomType]] room_type The room_type + # @param [Array[room.Codec]] codec The codec # @param [String] room_name The room_name # @param [Time] created_after The created_after # @param [Time] created_before The created_before # @param [Integer] limit Upper limit for the number of records to return. stream() # guarantees to never return more than limit. Default is no limit @@ -55,12 +55,12 @@ ## # Streams RoomInstance records from the API as an Enumerable. # This operation lazily loads records as efficiently as possible until the limit # is reached. - # @param [room.RoomType] room_type The room_type - # @param [room.Codec] codec The codec + # @param [Array[room.RoomType]] room_type The room_type + # @param [Array[room.Codec]] codec The codec # @param [String] room_name The room_name # @param [Time] created_after The created_after # @param [Time] created_before The created_before # @param [Integer] limit Upper limit for the number of records to return. stream() # guarantees to never return more than limit. Default is no limit. @@ -99,12 +99,12 @@ end ## # Retrieve a single page of RoomInstance records from the API. # Request is executed immediately. - # @param [room.RoomType] room_type The room_type - # @param [room.Codec] codec The codec + # @param [Array[room.RoomType]] room_type The room_type + # @param [Array[room.Codec]] codec The codec # @param [String] room_name The room_name # @param [Time] created_after The created_after # @param [Time] created_before The created_before # @param [String] page_token PageToken provided by the API # @param [Integer] page_number Page Number, this value is simply for client state @@ -392,10 +392,10 @@ def max_concurrent_participants @properties['max_concurrent_participants'] end ## - # @return [room.Codec] The codecs + # @return [Array[room.Codec]] The codecs def codecs @properties['codecs'] end ## \ No newline at end of file