apps/recallassess/recallassess-api/src/api/client/testimonial/dto/testimonial.dto.ts
Properties |
| course_id |
Type : number | null
|
Decorators :
@Expose()
|
| course_title |
Type : string
|
Decorators :
@Expose()
|
| id |
Type : number
|
Decorators :
@Expose()
|
| is_featured |
Type : boolean
|
Decorators :
@Expose()
|
| organization |
Type : string | null
|
Decorators :
@Expose()
|
| participant_name |
Type : string
|
Decorators :
@Expose()
|
| quote |
Type : string
|
Decorators :
@Expose()
|
| rating |
Type : number
|
Decorators :
@Expose()
|
| role_title |
Type : string | null
|
Decorators :
@Expose()
|
| sort_order |
Type : number
|
Decorators :
@Expose()
|
| theme_color |
Type : string
|
Decorators :
@Expose()
|
import { Exclude, Expose } from "class-transformer";
@Exclude()
export class CLTestimonialDto {
@Expose()
id!: number;
@Expose()
participant_name!: string;
@Expose()
role_title!: string | null;
@Expose()
organization!: string | null;
@Expose()
course_id!: number | null;
@Expose()
course_title!: string;
@Expose()
quote!: string;
@Expose()
rating!: number;
@Expose()
theme_color!: string;
@Expose()
is_featured!: boolean;
@Expose()
sort_order!: number;
}