src/application-dashboard/dto/application-dashboard.dto.ts
Properties |
| dashboardEmbeddingId |
Type : string
|
Decorators :
@ApiProperty({example: '34cf9fb6-f5a8-4a9d-a84f-a0f690bc9a52'})
|
| dashboardId |
Type : number
|
Decorators :
@ApiProperty({example: 1})
|
| dashboardName |
Type : string
|
Decorators :
@ApiProperty({example: 'Admin'})
|
import { ApiProperty } from '@nestjs/swagger';
export class ApplicationDashboardBodyDto {
@ApiProperty({ example: 1 })
dashboardId: number;
@ApiProperty({ example: 'Admin' })
dashboardName: string;
@ApiProperty({ example: '34cf9fb6-f5a8-4a9d-a84f-a0f690bc9a52' })
dashboardEmbeddingId: string;
}