src/user-lists/dtos/update-user-list.dto.ts
Properties |
|
| contributors |
Type : literal type[]
|
Decorators :
@ApiProperty({description: 'An array of contributor objects', isArray: true, example: undefined})
|
|
Inherited from
CreateUserListDto
|
|
Defined in
CreateUserListDto:35
|
| Optional is_public |
Type : boolean
|
Default value : true
|
Decorators :
@ApiPropertyOptional({description: 'List Visibility', type: Boolean, example: true})
|
|
Inherited from
CreateUserListDto
|
|
Defined in
CreateUserListDto:26
|
| name |
Type : string
|
Decorators :
@ApiProperty({description: 'List Name', type: String, example: 'My List'})
|
|
Inherited from
CreateUserListDto
|
|
Defined in
CreateUserListDto:17
|
import { CreateUserListDto } from "./create-user-list.dto";
export class UpdateUserListDto extends CreateUserListDto {}