src/app/core/models/image.ts
alt |
alt: |
Defined in src/app/core/models/image.ts:10
|
attachment_content_type |
attachment_content_type: |
Defined in src/app/core/models/image.ts:4
|
attachment_file_name |
attachment_file_name: |
Defined in src/app/core/models/image.ts:5
|
attachment_height |
attachment_height: |
Defined in src/app/core/models/image.ts:9
|
attachment_updated_at |
attachment_updated_at: |
Defined in src/app/core/models/image.ts:7
|
attachment_width |
attachment_width: |
Defined in src/app/core/models/image.ts:8
|
id |
id: |
Defined in src/app/core/models/image.ts:2
|
large_url |
large_url: |
Defined in src/app/core/models/image.ts:16
|
mini_url |
mini_url: |
Defined in src/app/core/models/image.ts:13
|
position |
position: |
Defined in src/app/core/models/image.ts:3
|
product_url |
product_url: |
Defined in src/app/core/models/image.ts:15
|
small_url |
small_url: |
Defined in src/app/core/models/image.ts:14
|
type |
type: |
Defined in src/app/core/models/image.ts:6
|
viewable_id |
viewable_id: |
Defined in src/app/core/models/image.ts:12
|
viewable_type |
viewable_type: |
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;
}