src/insight/dtos/update-insight.dto.ts
Properties |
| Optional is_public |
Type : boolean
|
Default value : true
|
Decorators :
@ApiPropertyOptional({description: 'Insight Page Visibility', type: Boolean, example: true})
|
|
Inherited from
CreateInsightDto
|
|
Defined in
CreateInsightDto:23
|
| name |
Type : string
|
Decorators :
@ApiProperty({description: 'Insight Page Name', type: String, example: 'My Team'})
|
|
Inherited from
CreateInsightDto
|
|
Defined in
CreateInsightDto:14
|
| repos |
Type : RepoInfo[]
|
Decorators :
@ApiProperty({description: 'An array of repository information objects', isArray: true, type: RepoInfo, example: undefined})
|
|
Inherited from
CreateInsightDto
|
|
Defined in
CreateInsightDto:33
|
import { CreateInsightDto } from "./create-insight.dto";
export class UpdateInsightDto extends CreateInsightDto {}