Class: Twilio::REST::Autopilot::V1::AssistantContext::StyleSheetContext

Inherits:
InstanceContext
  • Object
show all
Defined in:
lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb

Overview

PLEASE NOTE that this class contains preview products that are subject to change. Use them with caution. If you currently do not have developer preview access, please contact [email protected].

Instance Method Summary collapse

Constructor Details

#initialize(version, assistant_sid) ⇒ StyleSheetContext

Initialize the StyleSheetContext

Parameters:



52
53
54
55
56
57
58
59
60
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 52

def initialize(version, assistant_sid)
    super(version)

    # Path Solution
    @solution = { assistant_sid: assistant_sid,  }
    @uri = "/Assistants/#{@solution[:assistant_sid]}/StyleSheet"

    
end

Instance Method Details

#fetchStyleSheetInstance

Fetch the StyleSheetInstance

Returns:



64
65
66
67
68
69
70
71
72
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 64

def fetch

    payload = @version.fetch('GET', @uri)
    StyleSheetInstance.new(
        @version,
        payload,
        assistant_sid: @solution[:assistant_sid],
    )
end

#inspectObject

Provide a detailed, user friendly representation



104
105
106
107
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 104

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

#to_sObject

Provide a user friendly representation



97
98
99
100
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 97

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

#update(style_sheet: :unset) ⇒ StyleSheetInstance

Update the StyleSheetInstance

Parameters:

  • style_sheet (Object) (defaults to: :unset)

    The JSON string that describes the style sheet object.

Returns:



78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 78

def update(
    style_sheet: :unset
)

    data = Twilio::Values.of({
        'StyleSheet' => Twilio.serialize_object(style_sheet),
    })

    payload = @version.update('POST', @uri, data: data)
    StyleSheetInstance.new(
        @version,
        payload,
        assistant_sid: @solution[:assistant_sid],
    )
end