src/outbound/auth-api/dto/realm.dto.ts
Properties |
| realm |
Type : string
|
Decorators :
@ApiProperty({example: 'CCM'})
|
|
Defined in src/outbound/auth-api/dto/realm.dto.ts:5
|
import { ApiProperty } from '@nestjs/swagger';
export class RealmDto {
@ApiProperty({ example: 'CCM' })
realm: string;
}
export class RealmEnabledDto {
@ApiProperty({ example: true })
enabled: boolean;
}