Class ResponseErrorEvent.Builder
- 
                    
                    - All Implemented Interfaces:
 
 public final class ResponseErrorEvent.BuilderA builder for ResponseErrorEvent. 
- 
                
                    
                    - 
                                
                            
                                Method Summary- 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        codefinal ResponseErrorEvent.Builder code(String code) The error code. 
 - 
                                        codefinal ResponseErrorEvent.Builder code(Optional<String> code) Alias for calling Builder.code with code.orElse(null).
 - 
                                        codefinal ResponseErrorEvent.Builder code(JsonField<String> code) Sets Builder.code to an arbitrary JSON value. You should usually call Builder.code with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        messagefinal ResponseErrorEvent.Builder message(String message) The error message. 
 - 
                                        messagefinal ResponseErrorEvent.Builder message(JsonField<String> message) Sets Builder.message to an arbitrary JSON value. You should usually call Builder.message with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        paramfinal ResponseErrorEvent.Builder param(String param) The error parameter. 
 - 
                                        paramfinal ResponseErrorEvent.Builder param(Optional<String> param) Alias for calling Builder.param with param.orElse(null).
 - 
                                        paramfinal ResponseErrorEvent.Builder param(JsonField<String> param) Sets Builder.param to an arbitrary JSON value. You should usually call Builder.param with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        sequenceNumberfinal ResponseErrorEvent.Builder sequenceNumber(Long sequenceNumber) The sequence number of this event. 
 - 
                                        sequenceNumberfinal ResponseErrorEvent.Builder sequenceNumber(JsonField<Long> sequenceNumber) Sets Builder.sequenceNumber to an arbitrary JSON value. You should usually call Builder.sequenceNumber with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        typefinal ResponseErrorEvent.Builder type(JsonValue type) 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("error")This method is primarily for setting the field to an undocumented or not yet supported value. 
 - 
                                        additionalPropertiesfinal ResponseErrorEvent.Builder additionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        putAdditionalPropertyfinal ResponseErrorEvent.Builder putAdditionalProperty(String key, JsonValue value) 
 - 
                                        putAllAdditionalPropertiesfinal ResponseErrorEvent.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties) 
 - 
                                        removeAdditionalPropertyfinal ResponseErrorEvent.Builder removeAdditionalProperty(String key) 
 - 
                                        removeAllAdditionalPropertiesfinal ResponseErrorEvent.Builder removeAllAdditionalProperties(Set<String> keys) 
 - 
                                        buildfinal ResponseErrorEvent build() Returns an immutable instance of ResponseErrorEvent. Further updates to this Builder will not mutate the returned instance. The following fields are required: .code() .message() .param() .sequenceNumber()
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-