Class: Twilio::REST::FlexApi::V1::InsightsSettingsCommentList

Inherits:
ListResource
  • Object
show all
Defined in:
lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ InsightsSettingsCommentList

Initialize the InsightsSettingsCommentList

Parameters:

  • version (Version)

    Version that contains the resource



25
26
27
28
29
30
31
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb', line 25

def initialize(version)
    super(version)
    # Path Solution
    @solution = {  }
    @uri = "/Insights/QualityManagement/Settings/CommentTags"
    
end

Instance Method Details

#fetch(authorization: :unset) ⇒ InsightsSettingsCommentInstance

Fetch the InsightsSettingsCommentInstance

Parameters:

  • authorization (String) (defaults to: :unset)

    The Authorization HTTP request header

Returns:



36
37
38
39
40
41
42
43
44
45
46
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb', line 36

def fetch(
    authorization: :unset
)

    headers = Twilio::Values.of({ 'Authorization' => authorization, })
    payload = @version.fetch('GET', @uri, headers: headers)
    InsightsSettingsCommentInstance.new(
        @version,
        payload,
    )
end

#to_sObject

Provide a user friendly representation



52
53
54
# File 'lib/twilio-ruby/rest/flex_api/v1/insights_settings_comment.rb', line 52

def to_s
    '#<Twilio.FlexApi.V1.InsightsSettingsCommentList>'
end