src/user/request/dto/update-user-device-id.dto.ts
Properties |
| deviceId |
Type : string
|
Decorators :
@ApiProperty({type: String, maxLength: 200, required: false})
|
import { ApiProperty } from '@nestjs/swagger';
export class UpdateUserDeviceIdDTO {
@ApiProperty({ type: String, maxLength: 200, required: false })
deviceId: string;
}