abstract_api.image_processing.image_processing_response module#

class abstract_api.image_processing.image_processing_response.ImageProcessingResponse(response: Response)[source]#

Bases: JSONResponse

Image processing service response.

property bytes_saved: int | None#

The number of bytes saved by optimizing the image, in bytes.

property final_height: int | None#

The final height of the processed image, in bytes.

property final_size: int | None#

The final size of the processed image, in bytes.

property final_width: int | None#

The final width of the processed image, in bytes.

property original_height: int | None#

The original height of the provided image, in bytes.

property original_size: int | None#

The original size of the provided image, in bytes.

property original_width: int | None#

The original width of the provided image, in bytes.

property url: str | None#

The URL with the new processed image.