/home/bdqbpbxa/dev-subdomains/admin.pixory.goodface.com.ua/src/stripe/types/checkout.dto.ts
export class CreateIntentDto {
    customerId?: string
    amount: number
}

export class UpdateIntentDto {
    customerId?: string
    orderId?: string
    amount?: number
}