src/application-user/dto/application-user.dto.ts
Properties |
| applicationId |
Type : number
|
Decorators :
@ApiProperty()
|
| applicationProfileId |
Type : number
|
Decorators :
@ApiProperty()
|
| clientId |
Type : number
|
Decorators :
@ApiProperty()
|
| Optional password |
Type : literal type
|
Decorators :
@ApiProperty()
|
| userId |
Type : number
|
Decorators :
@ApiProperty()
|
import { ApiProperty } from '@nestjs/swagger';
export class ApplicationUserBodyDto {
@ApiProperty()
applicationProfileId: number;
@ApiProperty()
userId: number;
@ApiProperty()
clientId: number;
@ApiProperty()
applicationId: number;
@ApiProperty()
password?: {
clientname: string;
password: string;
username: string;
};
}