## # This code was generated by # ___ _ _ _ _ _ _ ____ ____ ____ _ ____ ____ _ _ ____ ____ ____ ___ __ __ # | | | | | | | | | __ | | |__| | __ | __ |___ |\ | |___ |__/ |__| | | | |__/ # | |_|_| | |___ | |__| |__| | | | |__] |___ | \| |___ | \ | | | |__| | \ # # Twilio - Autopilot # This is the public Twilio REST API. # # NOTE: This class is auto generated by OpenAPI Generator. # https://openapi-generator.tech # Do not edit the class manually. # module Twilio module REST class Autopilot < AutopilotBase class V1 < Version class AssistantContext < InstanceContext class StyleSheetList < ListResource ## # Initialize the StyleSheetList # @param [Version] version Version that contains the resource # @return [StyleSheetList] StyleSheetList def initialize(version, assistant_sid: nil) super(version) # Path Solution @solution = { assistant_sid: assistant_sid } end # Provide a user friendly representation def to_s '#<Twilio.Autopilot.V1.StyleSheetList>' end end ## #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 help@twilio.com. class StyleSheetContext < InstanceContext ## # Initialize the StyleSheetContext # @param [Version] version Version that contains the resource # @param [String] assistant_sid The SID of the [Assistant](https://www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource to update. # @return [StyleSheetContext] StyleSheetContext def initialize(version, assistant_sid) super(version) # Path Solution @solution = { assistant_sid: assistant_sid, } @uri = "/Assistants/#{@solution[:assistant_sid]}/StyleSheet" end ## # Fetch the StyleSheetInstance # @return [StyleSheetInstance] Fetched StyleSheetInstance def fetch payload = @version.fetch('GET', @uri) StyleSheetInstance.new( @version, payload, assistant_sid: @solution[:assistant_sid], ) end ## # Update the StyleSheetInstance # @param [Object] style_sheet The JSON string that describes the style sheet object. # @return [StyleSheetInstance] Updated StyleSheetInstance 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 ## # Provide a user friendly representation def to_s context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Autopilot.V1.StyleSheetContext #{context}>" end ## # Provide a detailed, user friendly representation def inspect context = @solution.map{|k, v| "#{k}: #{v}"}.join(',') "#<Twilio.Autopilot.V1.StyleSheetContext #{context}>" end end class StyleSheetPage < Page ## # Initialize the StyleSheetPage # @param [Version] version Version that contains the resource # @param [Response] response Response from the API # @param [Hash] solution Path solution for the resource # @return [StyleSheetPage] StyleSheetPage def initialize(version, response, solution) super(version, response) # Path Solution @solution = solution end ## # Build an instance of StyleSheetInstance # @param [Hash] payload Payload response from the API # @return [StyleSheetInstance] StyleSheetInstance def get_instance(payload) StyleSheetInstance.new(@version, payload, assistant_sid: @solution[:assistant_sid]) end ## # Provide a user friendly representation def to_s '<Twilio.Autopilot.V1.StyleSheetPage>' end end class StyleSheetInstance < InstanceResource ## # Initialize the StyleSheetInstance # @param [Version] version Version that contains the resource # @param [Hash] payload payload that contains response from Twilio # @param [String] account_sid The SID of the # {Account}[https://www.twilio.com/docs/iam/api/account] that created this StyleSheet # resource. # @param [String] sid The SID of the Call resource to fetch. # @return [StyleSheetInstance] StyleSheetInstance 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 || @properties['assistant_sid'] , } end ## # Generate an instance context for the instance, the context is capable of # performing various actions. All instance actions are proxied to the context # @return [StyleSheetContext] CallContext for this CallInstance def context unless @instance_context @instance_context = StyleSheetContext.new(@version , @params['assistant_sid']) end @instance_context end ## # @return [String] The SID of the [Account](https://www.twilio.com/docs/iam/api/account) that created the StyleSheet resource. def account_sid @properties['account_sid'] end ## # @return [String] The SID of the [Assistant](https://www.twilio.com/docs/autopilot/api/assistant) that is the parent of the resource. def assistant_sid @properties['assistant_sid'] end ## # @return [String] The absolute URL of the StyleSheet resource. def url @properties['url'] end ## # @return [Hash] The JSON string that describes the style sheet object. def data @properties['data'] end ## # Fetch the StyleSheetInstance # @return [StyleSheetInstance] Fetched StyleSheetInstance def fetch context.fetch end ## # Update the StyleSheetInstance # @param [Object] style_sheet The JSON string that describes the style sheet object. # @return [StyleSheetInstance] Updated StyleSheetInstance def update( style_sheet: :unset ) context.update( style_sheet: style_sheet, ) end ## # Provide a user friendly representation def to_s values = @params.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.StyleSheetInstance #{values}>" end ## # Provide a detailed, user friendly representation def inspect values = @properties.map{|k, v| "#{k}: #{v}"}.join(" ") "<Twilio.Autopilot.V1.StyleSheetInstance #{values}>" end end end end end end end