mirror of
https://github.com/rjNemo/go-wiki
synced 2026-06-11 21:16:40 +00:00
14 lines
470 B
Go
14 lines
470 B
Go
package stripe
|
|
|
|
// TerminalConnectionTokenParams is the set of parameters that can be used when creating a terminal connection token.
|
|
type TerminalConnectionTokenParams struct {
|
|
Params `form:"*"`
|
|
Location string `form:"location"`
|
|
}
|
|
|
|
// TerminalConnectionToken is the resource representing a Stripe terminal connection token.
|
|
type TerminalConnectionToken struct {
|
|
Location string `json:"location"`
|
|
Object string `json:"object"`
|
|
Secret string `json:"secret"`
|
|
}
|