File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
src-ts/tools/learn/learn-lib/data-providers/tca-certifications-provider Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ export interface TCACertificationCategory {
2
+ id : number
3
+ category : string
4
+ track : string
5
+ createdAt : Date
6
+ updatedAt : Date
7
+ }
Original file line number Diff line number Diff line change 1
1
import { TCACertificationLearnLevel } from './tca-certificate-level-type'
2
2
import { TCACertificationStatus } from './tca-certificate-status-type'
3
+ import { TCACertificationCategory } from './tca-certification-category.model'
3
4
4
5
export interface TCACertification {
5
6
id : number
6
7
title : string
8
+ dashedName : string
7
9
description : string
10
+ introText : string
8
11
estimatedCompletionTime : number
9
12
status : TCACertificationStatus
10
13
sequentialCourses : boolean
11
14
learnerLevel : TCACertificationLearnLevel
12
15
certificationCategoryId : string
16
+ certificationCategory : TCACertificationCategory
13
17
stripeProductId ?: string
14
18
skills : string [ ]
19
+ learningOutcomes : string [ ]
20
+ prerequisites : string [ ]
21
+ createdAt : Date
22
+ updatedAt : Date
15
23
}
You can’t perform that action at this time.
0 commit comments