ProductImages
Columns
Name | Type | ReadOnly | Description |
ImageId [KEY] | Long | True | A unique numeric identifier for the product image. |
ProductId | Long | True | The id of the product associated with the image. |
VariantIds | String | False | The array of variant ids associated with the image. |
Position | Integer | False | The order of the product image in the list. |
FilePath | String | False | Full path to the image. Can be locally or online. Example: http://example.com/rails_logo.gif. Either this or Base64Content are required. |
Width | Integer | True | The width of the image. |
Height | Integer | True | The height of the image. |
CreatedAt | Datetime | True | The datetime when the image was created. |
UpdatedAt | Datetime | True | The datetime when the image was updated. |
Alt | String | False | The Alt content of the image. |
Pseudo-Columns
Pseudo column fields are used in the WHERE clause of SELECT statements and offer a more granular control over the tuples that are returned from the data source.
Name | Type | Description |
FileName | String | The name that the image will be displayed in the application. |
Attachment | String | Base64 encoded bytes of the image. Either this or FilePath are required. |
Last updated