Class: Twilio::REST::Preview::Understand::AssistantContext::ModelBuildContext
- Inherits:
-
InstanceContext
- Object
- InstanceContext
- Twilio::REST::Preview::Understand::AssistantContext::ModelBuildContext
- Defined in:
- lib/twilio-ruby/rest/preview/understand/assistant/model_build.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
-
#delete ⇒ Boolean
Deletes the ModelBuildInstance.
-
#fetch ⇒ ModelBuildInstance
Fetch a ModelBuildInstance.
-
#initialize(version, assistant_sid, sid) ⇒ ModelBuildContext
constructor
Initialize the ModelBuildContext.
-
#to_s ⇒ Object
Provide a user friendly representation.
-
#update(unique_name: :unset) ⇒ ModelBuildInstance
Update the ModelBuildInstance.
Constructor Details
#initialize(version, assistant_sid, sid) ⇒ ModelBuildContext
Initialize the ModelBuildContext
177 178 179 180 181 182 183 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb', line 177 def initialize(version, assistant_sid, sid) super(version) # Path Solution @solution = {assistant_sid: assistant_sid, sid: sid, } @uri = "/Assistants/#{@solution[:assistant_sid]}/ModelBuilds/#{@solution[:sid]}" end |
Instance Method Details
#delete ⇒ Boolean
Deletes the ModelBuildInstance
229 230 231 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb', line 229 def delete @version.delete('delete', @uri) end |
#fetch ⇒ ModelBuildInstance
Fetch a ModelBuildInstance
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb', line 188 def fetch params = Twilio::Values.of({}) payload = @version.fetch( 'GET', @uri, params, ) ModelBuildInstance.new( @version, payload, assistant_sid: @solution[:assistant_sid], sid: @solution[:sid], ) end |
#to_s ⇒ Object
Provide a user friendly representation
235 236 237 238 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb', line 235 def to_s context = @solution.map {|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Preview.Understand.ModelBuildContext #{context}>" end |
#update(unique_name: :unset) ⇒ ModelBuildInstance
Update the ModelBuildInstance
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
# File 'lib/twilio-ruby/rest/preview/understand/assistant/model_build.rb', line 209 def update(unique_name: :unset) data = Twilio::Values.of({'UniqueName' => unique_name, }) payload = @version.update( 'POST', @uri, data: data, ) ModelBuildInstance.new( @version, payload, assistant_sid: @solution[:assistant_sid], sid: @solution[:sid], ) end |