By using these decorators on each of the class properties, you have to document each of them.
import { ApiProperty } from '@nestjs/swagger';
export class NotificationCategoryDto {
@ApiProperty({
name: 'name',
type: String,
required: true,
example: 'Accounts',
})
name: string;
}
If you want to document your API responses, you should also use decorators to make them visible in the Swagger interface.
import { ApiProperty } from '@nestjs/swagger';
import { IsString } from 'class-validator';
export class NotificationCategory {
@ApiProperty({
name: 'id',
type: String,
example: 'b0a600fa-8860-42a6-8a6a-6521e90749b1',
})
@IsString()
id?: string;
@ApiProperty({
name: 'name',
type: String,
example: 'Accounts',
})
@IsString()
name?: string;
}
export class NotificationCategories {
@ApiProperty({
name: 'categories',
type: NotificationCategory,
isArray: true,
})
categories: NotificationCategory[];
}
If you use child classes in a parent class, the child classes must be declared before the parent class.
To use Swagger decorators, you must always use a JavaScript class.
import { ApiProperty } from '@nestjs/swagger';
export class NotificationCategoryDto {
@ApiProperty({
name: 'name',
type: String,
required: true,
example: 'Accounts',
})
name: string;
}
import { ApiProperty } from '@nestjs/swagger';
export interface NotificationCategoryDto {
@ApiProperty({
name: 'name',
type: String,
required: true,
example: 'Accounts',
})
name: string;
}