feat(can-charge): 이롬넷(Payverse) 통합결제 추가

This commit is contained in:
Yu Sung
2025-10-01 01:48:18 +09:00
parent e62c89d7bc
commit d045722b8d
13 changed files with 639 additions and 72 deletions

View File

@@ -0,0 +1,20 @@
//
// PayverseChargeDto.swift
// SodaLive
//
// Created by klaus on 9/29/25.
//
struct PayverseChargeRequest: Encodable {
let canId: Int
}
struct PayverseChargeResponse: Decodable {
let chargeId: Int
let payloadJson: String
}
struct PayverseVerifyRequest: Encodable {
let transactionId: String
let orderId: String
}