ImageAssetDto
Data transfer object for image asset details
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique identifier (GUID) |
Unique identifier (GUID) | ||
| name | string | Name of the image asset |
Name of the image asset | ||
| description | string | Description of the image asset |
Description of the image asset | ||
| originalFileName | string | Original file name |
Original file name | ||
| contentType | string | MIME type of the image |
MIME type of the image | ||
| fileSize | integer | File size in bytes |
File size in bytes | ||
| widthPx | integer | Image width in pixels (null for SVG) |
Image width in pixels (null for SVG) | ||
| heightPx | integer | Image height in pixels (null for SVG) |
Image height in pixels (null for SVG) | ||
| sha256Hash | string | SHA256 hash of the file |
SHA256 hash of the file | ||
| downloadUrl | string | SAS URL for downloading the image (generated on-demand) |
SAS URL for downloading the image (generated on-demand) | ||
| createdDate | string | Date when the asset was created |
Date when the asset was created | ||
| updatedDate | string | Date when the asset was last updated |
Date when the asset was last updated | ||
JSON Example
{
"code": "string",
"name": "string",
"description": "string",
"originalFileName": "string",
"contentType": "string"
}