src/app/core/models/image.ts
Properties |
| alt |
alt:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:10
|
| attachment_content_type |
attachment_content_type:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:4
|
| attachment_file_name |
attachment_file_name:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:5
|
| attachment_height |
attachment_height:
|
Type : number
|
|
Defined in src/app/core/models/image.ts:9
|
| attachment_updated_at |
attachment_updated_at:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:7
|
| attachment_width |
attachment_width:
|
Type : number
|
|
Defined in src/app/core/models/image.ts:8
|
| id |
id:
|
Type : number
|
|
Defined in src/app/core/models/image.ts:2
|
| large_url |
large_url:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:16
|
| mini_url |
mini_url:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:13
|
| position |
position:
|
Type : number
|
|
Defined in src/app/core/models/image.ts:3
|
| product_url |
product_url:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:15
|
| small_url |
small_url:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:14
|
| type |
type:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:6
|
| viewable_id |
viewable_id:
|
Type : number
|
|
Defined in src/app/core/models/image.ts:12
|
| viewable_type |
viewable_type:
|
Type : string
|
|
Defined in src/app/core/models/image.ts:11
|
export class Image {
id: number;
position: number;
attachment_content_type: string;
attachment_file_name: string;
type: string;
attachment_updated_at: string;
attachment_width: number;
attachment_height: number;
alt: string;
viewable_type: string;
viewable_id: number;
mini_url: string;
small_url: string;
product_url: string;
large_url: string;
}