src/app/core/models/option_value.ts
id |
id: |
Defined in src/app/core/models/option_value.ts:2
|
name |
name: |
Defined in src/app/core/models/option_value.ts:3
|
option_type_id |
option_type_id: |
Defined in src/app/core/models/option_value.ts:6
|
option_type_name |
option_type_name: |
Defined in src/app/core/models/option_value.ts:5
|
option_type_presentation |
option_type_presentation: |
Defined in src/app/core/models/option_value.ts:7
|
presentation |
presentation: |
Defined in src/app/core/models/option_value.ts:4
|
export class OptionValue {
id: string;
name: string;
presentation: string;
option_type_name: string;
option_type_id: number;
option_type_presentation: string;
}