forked from GBSEcom/NPM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoc.go
More file actions
12 lines (10 loc) · 635 Bytes
/
doc.go
File metadata and controls
12 lines (10 loc) · 635 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
// Package fiserv provides a client for the North American API at https://docs.firstdata.com/org/gateway/docs/api.
package fiserv
//go:generate rm -f types.gen.go
//go:generate rm -f client.gen.go
//go:generate ./bin/oapi-codegen -templates=./templates -generate=types,skip-prune -package=fiserv -o types.gen.go YAMLSpec-6.14-v2-10-15-2020.yaml
//go:generate ./bin/oapi-codegen -templates=./templates -generate=client,skip-prune -package=fiserv -o client.gen.go YAMLSpec-6.14-v2-10-15-2020.yaml
const (
ProductionServer = "https://prod.api.firstdata.com/gateway/v2"
SandboxServer = "https://cert.api.firstdata.com/gateway/v2"
)