Class ChatKitWorkflow.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ChatKitWorkflow.BuilderA builder for ChatKitWorkflow. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        idfinal ChatKitWorkflow.Builder id(String id) Identifier of the workflow backing the session. 
 - 
                                        idfinal ChatKitWorkflow.Builder id(JsonField<String> id) Sets Builder.id to an arbitrary JSON value. You should usually call Builder.id with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        stateVariablesfinal ChatKitWorkflow.Builder stateVariables(ChatKitWorkflow.StateVariables stateVariables) State variable key-value pairs applied when invoking the workflow. Defaults to null when no overrides were provided. 
 - 
                                        stateVariablesfinal ChatKitWorkflow.Builder stateVariables(Optional<ChatKitWorkflow.StateVariables> stateVariables) Alias for calling Builder.stateVariables with stateVariables.orElse(null).
 - 
                                        stateVariablesfinal ChatKitWorkflow.Builder stateVariables(JsonField<ChatKitWorkflow.StateVariables> stateVariables) Sets Builder.stateVariables to an arbitrary JSON value. You should usually call Builder.stateVariables with a well-typed StateVariables value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        tracingfinal ChatKitWorkflow.Builder tracing(ChatKitWorkflow.Tracing tracing) Tracing settings applied to the workflow. 
 - 
                                        tracingfinal ChatKitWorkflow.Builder tracing(JsonField<ChatKitWorkflow.Tracing> tracing) Sets Builder.tracing to an arbitrary JSON value. You should usually call Builder.tracing with a well-typed Tracing value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        versionfinal ChatKitWorkflow.Builder version(String version) Specific workflow version used for the session. Defaults to null when using the latest deployment. 
 - 
                                        versionfinal ChatKitWorkflow.Builder version(Optional<String> version) Alias for calling Builder.version with version.orElse(null).
 - 
                                        versionfinal ChatKitWorkflow.Builder version(JsonField<String> version) Sets Builder.version to an arbitrary JSON value. You should usually call Builder.version with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal ChatKitWorkflow.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ChatKitWorkflow.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ChatKitWorkflow.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ChatKitWorkflow.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ChatKitWorkflow.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ChatKitWorkflow build() Returns an immutable instance of ChatKitWorkflow. Further updates to this Builder will not mutate the returned instance. The following fields are required: .id() .stateVariables() .tracing() .version()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-