import { ApiProperty } from '@nestjs/swagger'; import { IsNotEmpty } from 'class-validator'; export class AuthFacebookLoginDto { @ApiProperty({ example: 'abc' }) @IsNotEmpty() accessToken: string; }