Class ImageEditPartialImageEvent.Builder
- 
                    
                    
- All Implemented Interfaces:
 
public final class ImageEditPartialImageEvent.BuilderA builder for ImageEditPartialImageEvent.
 
- 
                
                    
                    
- 
                                
                            
                                
Method Summary
- 
                    
                    
                    
- 
                                
                            
                                
Method Detail
- 
                                        
b64Json
final ImageEditPartialImageEvent.Builder b64Json(String b64Json)
Base64-encoded partial image data, suitable for rendering as an image.
 
- 
                                        
b64Json
final ImageEditPartialImageEvent.Builder b64Json(JsonField<String> b64Json)
Sets Builder.b64Json to an arbitrary JSON value.
You should usually call Builder.b64Json with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
background
final ImageEditPartialImageEvent.Builder background(ImageEditPartialImageEvent.Background background)
The background setting for the requested edited image.
 
- 
                                        
background
final ImageEditPartialImageEvent.Builder background(JsonField<ImageEditPartialImageEvent.Background> background)
Sets Builder.background to an arbitrary JSON value.
You should usually call Builder.background with a well-typed Background value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
createdAt
final ImageEditPartialImageEvent.Builder createdAt(Long createdAt)
The Unix timestamp when the event was created.
 
- 
                                        
createdAt
final ImageEditPartialImageEvent.Builder createdAt(JsonField<Long> createdAt)
Sets Builder.createdAt to an arbitrary JSON value.
You should usually call Builder.createdAt with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
outputFormat
final ImageEditPartialImageEvent.Builder outputFormat(ImageEditPartialImageEvent.OutputFormat outputFormat)
The output format for the requested edited image.
 
- 
                                        
outputFormat
final ImageEditPartialImageEvent.Builder outputFormat(JsonField<ImageEditPartialImageEvent.OutputFormat> outputFormat)
Sets Builder.outputFormat to an arbitrary JSON value.
You should usually call Builder.outputFormat with a well-typed OutputFormat value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
partialImageIndex
final ImageEditPartialImageEvent.Builder partialImageIndex(Long partialImageIndex)
0-based index for the partial image (streaming).
 
- 
                                        
partialImageIndex
final ImageEditPartialImageEvent.Builder partialImageIndex(JsonField<Long> partialImageIndex)
Sets Builder.partialImageIndex to an arbitrary JSON value.
You should usually call Builder.partialImageIndex with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
quality
final ImageEditPartialImageEvent.Builder quality(ImageEditPartialImageEvent.Quality quality)
The quality setting for the requested edited image.
 
- 
                                        
quality
final ImageEditPartialImageEvent.Builder quality(JsonField<ImageEditPartialImageEvent.Quality> quality)
Sets Builder.quality to an arbitrary JSON value.
You should usually call Builder.quality with a well-typed Quality value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
size
final ImageEditPartialImageEvent.Builder size(ImageEditPartialImageEvent.Size size)
The size of the requested edited image.
 
- 
                                        
size
final ImageEditPartialImageEvent.Builder size(JsonField<ImageEditPartialImageEvent.Size> size)
Sets Builder.size to an arbitrary JSON value.
You should usually call Builder.size with a well-typed Size value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
type
final ImageEditPartialImageEvent.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("image_edit.partial_image")This method is primarily for setting the field to an undocumented or not yet supported value.
 
- 
                                        
additionalProperties
final ImageEditPartialImageEvent.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
 
- 
                                        
putAdditionalProperty
final ImageEditPartialImageEvent.Builder putAdditionalProperty(String key, JsonValue value)
 
- 
                                        
putAllAdditionalProperties
final ImageEditPartialImageEvent.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
 
- 
                                        
removeAdditionalProperty
final ImageEditPartialImageEvent.Builder removeAdditionalProperty(String key)
 
- 
                                        
removeAllAdditionalProperties
final ImageEditPartialImageEvent.Builder removeAllAdditionalProperties(Set<String> keys)
 
- 
                                        
build
final ImageEditPartialImageEvent build()
Returns an immutable instance of ImageEditPartialImageEvent.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.b64Json() .background() .createdAt() .outputFormat() .partialImageIndex() .quality() .size() 
 - 
                                        
 
 - 
                                
                            
                                
 
 - 
                    
                    
                    
 
 -