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