Class: Twilio::REST::Autopilot::V1::AssistantContext::StyleSheetInstance
- Inherits:
-
InstanceResource
- Object
- InstanceResource
- Twilio::REST::Autopilot::V1::AssistantContext::StyleSheetInstance
- 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
-
#account_sid ⇒ String
The SID of the Account that created the resource.
-
#assistant_sid ⇒ String
The SID of the Assistant that is the parent of the resource.
-
#context ⇒ StyleSheetContext
Generate an instance context for the instance, the context is capable of performing various actions.
-
#data ⇒ Hash
The JSON string that describes the style sheet object.
-
#fetch ⇒ StyleSheetInstance
Fetch the StyleSheetInstance.
-
#initialize(version, payload, assistant_sid: nil) ⇒ StyleSheetInstance
constructor
Initialize the StyleSheetInstance.
-
#inspect ⇒ Object
Provide a detailed, user friendly representation.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(style_sheet: :unset) ⇒ StyleSheetInstance
Update the StyleSheetInstance.
-
#url ⇒ String
The absolute URL of the StyleSheet resource.
Constructor Details
#initialize(version, payload, assistant_sid: nil) ⇒ StyleSheetInstance
Initialize the StyleSheetInstance
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 134 def initialize(version, payload, assistant_sid: nil) super(version) # Marshaled Properties @properties = { 'account_sid' => payload['account_sid'], 'assistant_sid' => payload['assistant_sid'], 'url' => payload['url'], 'data' => payload['data'], } # Context @instance_context = nil @params = {'assistant_sid' => assistant_sid, } end |
Instance Method Details
#account_sid ⇒ String
Returns The SID of the Account that created the resource.
163 164 165 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 163 def account_sid @properties['account_sid'] end |
#assistant_sid ⇒ String
Returns The SID of the Assistant that is the parent of the resource.
169 170 171 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 169 def assistant_sid @properties['assistant_sid'] end |
#context ⇒ StyleSheetContext
Generate an instance context for the instance, the context is capable of performing various actions. All instance actions are proxied to the context
154 155 156 157 158 159 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 154 def context unless @instance_context @instance_context = StyleSheetContext.new(@version, @params['assistant_sid'], ) end @instance_context end |
#data ⇒ Hash
Returns The JSON string that describes the style sheet object.
181 182 183 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 181 def data @properties['data'] end |
#fetch ⇒ StyleSheetInstance
Fetch the StyleSheetInstance
188 189 190 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 188 def fetch context.fetch end |
#inspect ⇒ Object
Provide a detailed, user friendly representation
209 210 211 212 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 209 def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.StyleSheetInstance #{values}>" end |
#to_s ⇒ Object
Provide a user friendly representation
202 203 204 205 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 202 def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.StyleSheetInstance #{values}>" end |
#update(style_sheet: :unset) ⇒ StyleSheetInstance
Update the StyleSheetInstance
196 197 198 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 196 def update(style_sheet: :unset) context.update(style_sheet: style_sheet, ) end |
#url ⇒ String
Returns The absolute URL of the StyleSheet resource.
175 176 177 |
# File 'lib/twilio-ruby/rest/autopilot/v1/assistant/style_sheet.rb', line 175 def url @properties['url'] end |