mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-27 00:54:54 +00:00
fix: validate card spending limit before transfering to child
This commit is contained in:
7
src/card/dtos/requests/fund-iban.request.dto.ts
Normal file
7
src/card/dtos/requests/fund-iban.request.dto.ts
Normal file
@ -0,0 +1,7 @@
|
||||
import { ApiProperty } from '@nestjs/swagger';
|
||||
import { TransferToJuniorRequestDto } from '~/junior/dtos/request';
|
||||
|
||||
export class FundIbanRequestDto extends TransferToJuniorRequestDto {
|
||||
@ApiProperty({ example: 'DE89370400440532013000' })
|
||||
iban!: string;
|
||||
}
|
||||
Reference in New Issue
Block a user