mirror of
https://github.com/rjNemo/payit
synced 2026-06-06 02:16:40 +00:00
12 lines
347 B
Go
12 lines
347 B
Go
package payments
|
|
|
|
// CheckoutSessionRequest captures optional inputs for creating a checkout session.
|
|
type CheckoutSessionRequest struct {
|
|
Quantity int64 `json:"quantity"`
|
|
}
|
|
|
|
// CheckoutSessionResult contains the data returned to callers initiating checkout.
|
|
type CheckoutSessionResult struct {
|
|
ID string `json:"id"`
|
|
URL string `json:"url"`
|
|
}
|