PBL6-informative-system / backend /src /payment /dto /create-payment-url.dto.ts
AnhLedger's picture
change amount in payment service
494e1c4
raw
history blame contribute delete
354 Bytes
import { IsNumber, IsOptional, IsString } from "class-validator"
export class CreatePaymentUrlDto {
@IsNumber()
amount: number
@IsOptional()
@IsString()
bankCode: string
@IsString()
orderId: string
@IsString()
orderDescription: string
@IsString()
orderType: string
@IsString()
language: string
}