apps/recallassess/recallassess-api/src/api/client/auth/dto/sign-in-with-token.dto.ts
Properties |
| accessToken |
Type : string
|
Decorators :
@Expose()
|
import { Exclude, Expose } from "class-transformer";
import { IsNotEmpty, IsString } from "class-validator";
@Exclude()
export class SignInWithTokenDto {
@Expose()
@IsString()
@IsNotEmpty()
accessToken!: string;
}