import { ApiProperty } from "@nestjs/swagger"; import { IsNotEmpty, IsString } from "class-validator"; export class SendExpertInitiatedLinkV2Dto { @ApiProperty({ description: "First party phone number. The link SMS will be sent to this number.", example: "09123456789", }) @IsString() @IsNotEmpty() phoneNumber: string; }