/**
 * @example
 *     {
 *         imageUrl: "https://somedomain.com/image1.jpg"
 *     }
 */
export interface UploadImageToGalleryRequest {
    /** The absolute url of the image (**no local file**). Maximum allowed size for image is **2MB**. Allowed extensions for images are: #### jpeg, jpg, png, bmp, gif. */
    imageUrl: string;
    /** Name of the image. */
    name?: string;
}
