File

src/app/interfaces/shopping-cart-item.ts

Description

Shopping cart item interface

Index

Properties

Properties

amount
amount: number
Type : number

Amount

eventname
eventname: string
Type : string

Event name

format
format: string
Type : string

format

info
info: ImageInfo
Type : ImageInfo

Image info

itemType
itemType: SHOPPINGCARTITEMTYPE
Type : SHOPPINGCARTITEMTYPE
name
name: string
Type : string

photoname

photographer
photographer: string
Type : string

Photographer UID

preview
preview: string
Type : string

Preview

price
price: number
Type : number

Article price

thumbnail
thumbnail: string
Type : string

THumbnail

totalPrice
totalPrice: number
Type : number

Total price

import { SHOPPINGCARTITEMTYPE } from '../enums/shopping-cart-item-type';
import { ImageInfo } from './image-info';

/**
 * Shopping cart item interface
 * @author Daniel Sogl
 */
export interface ShoppingCartItem {
  /** Event name */
  eventname: string;
  /** Photographer UID */
  photographer: string;
  /** photoname */
  name: string;
  /** Image info */
  info: ImageInfo;
  /** */
  itemType: SHOPPINGCARTITEMTYPE;
  /** Amount */
  amount?: number;
  /** Total price */
  totalPrice?: number;
  /** Preview */
  preview: string;
  /** THumbnail */
  thumbnail: string;
  /** Article price */
  price: number;
  /** format */
  format?: string;
}

results matching ""

    No results matching ""