Skip to content

Commit 888532c

Browse files
committed
Update SDK to version 0.1.0-20250417-586f7274
1 parent 2e9b7bf commit 888532c

13 files changed

+241
-393
lines changed

README.md

Lines changed: 5 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,3 @@
1-
# Flexprice Go SDK
2-
3-
The official Go client library for Flexprice API
4-
5-
## Installation
6-
7-
```bash
8-
go get github.com/flexprice/go-sdk
9-
```
10-
11-
## Usage
12-
13-
```go
14-
package main
15-
16-
import (
17-
"context"
18-
"fmt"
19-
"os"
20-
21-
"github.com/flexprice/go-sdk"
22-
)
23-
24-
func main() {
25-
// Initialize client with API key
26-
client := flexprice.NewClient(os.Getenv("FLEXPRICE_API_KEY"))
27-
28-
// For example, to get customer details
29-
customer, err := client.Customers.Get(context.Background(), "customer_id")
30-
if err != nil {
31-
fmt.Printf("Error: %v\n", err)
32-
return
33-
}
34-
35-
fmt.Printf("Customer: %+v\n", customer)
36-
}
37-
```
38-
39-
## API Documentation
40-
411
# FlexPrice Go SDK
422

433
This is the Go client library for the FlexPrice API.
@@ -257,4 +217,8 @@ The async client provides several advantages:
257217

258218
## Documentation
259219

260-
For detailed API documentation, refer to the code comments and the official FlexPrice API documentation.
220+
For detailed API documentation, refer to the code comments and the official FlexPrice API documentation.
221+
222+
## Auto-Generated API Documentation
223+
224+

0 commit comments

Comments
 (0)