Class: Twilio::REST::Preview::Understand::AssistantContext::StyleSheetContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Preview::Understand::AssistantContext::StyleSheetContext
- Defined in:
- lib/twilio-ruby/rest/preview/understand/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
-
#fetch ⇒ StyleSheetInstance
Fetch the StyleSheetInstance.
-
#initialize(version, assistant_sid) ⇒ StyleSheetContext
constructor
Initialize the StyleSheetContext.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(style_sheet: :unset) ⇒ StyleSheetInstance
Update the StyleSheetInstance.
Constructor Details
#initialize(version, assistant_sid) ⇒ StyleSheetContext
Initialize the StyleSheetContext
75 76 77 78 79 80 81 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb', line 75 def initialize(version, assistant_sid) super(version) # Path Solution @solution = {assistant_sid: assistant_sid, } @uri = "/Assistants/#{@solution[:assistant_sid]}/StyleSheet" end |
Instance Method Details
#fetch ⇒ StyleSheetInstance
Fetch the StyleSheetInstance
86 87 88 89 90 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb', line 86 def fetch payload = @version.fetch('GET', @uri) StyleSheetInstance.new(@version, payload, assistant_sid: @solution[:assistant_sid], ) end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
113 114 115 116 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb', line 113 def inspect context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Understand.StyleSheetContext #{context}>" end |
#to_s ⇒ Object
Provide a user friendly representation
106 107 108 109 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb', line 106 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Understand.StyleSheetContext #{context}>" end |
#update(style_sheet: :unset) ⇒ StyleSheetInstance
Update the StyleSheetInstance
96 97 98 99 100 101 102 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/style_sheet.rb', line 96 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 |