Class ChatCompletionSystemMessageParam.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ChatCompletionSystemMessageParam.BuilderA builder for ChatCompletionSystemMessageParam. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        contentfinal ChatCompletionSystemMessageParam.Builder content(ChatCompletionSystemMessageParam.Content content) The contents of the system message. 
 - 
                                        contentfinal ChatCompletionSystemMessageParam.Builder content(JsonField<ChatCompletionSystemMessageParam.Content> content) Sets Builder.content to an arbitrary JSON value. You should usually call Builder.content with a well-typed Content value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        contentfinal ChatCompletionSystemMessageParam.Builder content(String text) Alias for calling content with Content.ofText(text).
 - 
                                        contentOfArrayOfContentPartsfinal ChatCompletionSystemMessageParam.Builder contentOfArrayOfContentParts(List<ChatCompletionContentPartText> arrayOfContentParts) Alias for calling content with Content.ofArrayOfContentParts(arrayOfContentParts).
 - 
                                        rolefinal ChatCompletionSystemMessageParam.Builder role(JsonValue role) Sets the field to an arbitrary JSON value. It is usually unnecessary to call this method because the field defaults to the following: JsonValue.from("system")This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        namefinal ChatCompletionSystemMessageParam.Builder name(String name) An optional name for the participant. Provides the model information to differentiate between participants of the same role. 
 - 
                                        namefinal ChatCompletionSystemMessageParam.Builder name(JsonField<String> name) Sets Builder.name to an arbitrary JSON value. You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal ChatCompletionSystemMessageParam.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ChatCompletionSystemMessageParam.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ChatCompletionSystemMessageParam.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ChatCompletionSystemMessageParam.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ChatCompletionSystemMessageParam.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ChatCompletionSystemMessageParam build() Returns an immutable instance of ChatCompletionSystemMessageParam. Further updates to this Builder will not mutate the returned instance. The following fields are required: .content()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-