Represents a picture associated with a product.

interface ProductPicture {
    DisplayOrder: number;
    FullSizeUrl: string;
    Id: number;
    Url: string;
}

Properties

DisplayOrder: number

The display order of the product picture.

FullSizeUrl: string

The full-size URL of the product picture.

Id: number

The identifier of the product picture.

Url: string

The URL of the product picture.