Represents an image that is available via a URL.
type CanvaImageUrl = {type: CanvaDataType.CANVA_IMAGE_URL;url: string;imageType: string;width: number;height: number;};
Name | Type | Required | Description |
| Yes | This value is always | |
| string | Yes | The URL of the image. |
| string | Yes | The MIME type of the image. |
| number | Yes | The height of the image, in pixels. |
| number | Yes | The width of the image, in pixels. |