Package com.openai.models.responses
        Interface ResponseFunctionWebSearch.Action.Visitor
- 
                    
                    - All Implemented Interfaces:
 
 public interface ResponseFunctionWebSearch.Action.Visitor<T extends Object>
- 
                
                    
                    - 
                                
                            
                                Method SummaryModifier and Type Method Description abstract TvisitSearch(ResponseFunctionWebSearch.Action.Search search)Action type "search" - Performs a web search query. abstract TvisitOpenPage(ResponseFunctionWebSearch.Action.OpenPage openPage)Action type "open_page" - Opens a specific URL from search results. abstract TvisitFind(ResponseFunctionWebSearch.Action.Find find)Action type "find": Searches for a pattern within a loaded page. Tunknown(JsonValue json)Maps an unknown variant of Action to a value of type T. - 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        visitSearchabstract T visitSearch(ResponseFunctionWebSearch.Action.Search search) Action type "search" - Performs a web search query. 
 - 
                                        visitOpenPageabstract T visitOpenPage(ResponseFunctionWebSearch.Action.OpenPage openPage) Action type "open_page" - Opens a specific URL from search results. 
 - 
                                        visitFindabstract T visitFind(ResponseFunctionWebSearch.Action.Find find) Action type "find": Searches for a pattern within a loaded page. 
 - 
                                        unknownT unknown(JsonValue json) Maps an unknown variant of Action to a value of type T. An instance of Action can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of. 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-