src/app/interfaces/shopping-cart-item.ts
Shopping cart item interface
Properties |
amount |
amount:
|
Type : number
|
Defined in src/app/interfaces/shopping-cart-item.ts:20
|
Amount |
eventname |
eventname:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:10
|
Event name |
format |
format:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:30
|
format |
info |
info:
|
Type : ImageInfo
|
Defined in src/app/interfaces/shopping-cart-item.ts:16
|
Image info |
itemType |
itemType:
|
Type : SHOPPINGCARTITEMTYPE
|
Defined in src/app/interfaces/shopping-cart-item.ts:18
|
name |
name:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:14
|
photoname |
photographer |
photographer:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:12
|
Photographer UID |
preview |
preview:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:24
|
Preview |
price |
price:
|
Type : number
|
Defined in src/app/interfaces/shopping-cart-item.ts:28
|
Article price |
thumbnail |
thumbnail:
|
Type : string
|
Defined in src/app/interfaces/shopping-cart-item.ts:26
|
THumbnail |
totalPrice |
totalPrice:
|
Type : number
|
Defined in src/app/interfaces/shopping-cart-item.ts:22
|
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;
}