-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: regenerated with OpenAPI Doc 0.1.0, Speakeay CLI 1.77.1
- Loading branch information
1 parent
7b1e8c6
commit 68774ed
Showing
117 changed files
with
2,746 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
go-client-sdk/docs/models/operations/nestedfirstgetresponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# NestedFirstGetResponse | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | | ||
| `ContentType` | *string* | :heavy_check_mark: | N/A | | ||
| `StatusCode` | *int* | :heavy_check_mark: | N/A | | ||
| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# NestedGetResponse | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | | ||
| `ContentType` | *string* | :heavy_check_mark: | N/A | | ||
| `StatusCode` | *int* | :heavy_check_mark: | N/A | | ||
| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | N/A | |
10 changes: 10 additions & 0 deletions
10
go-client-sdk/docs/models/operations/nestedsecondgetresponse.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# NestedSecondGetResponse | ||
|
||
|
||
## Fields | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | ------------------------------------------------------ | | ||
| `ContentType` | *string* | :heavy_check_mark: | N/A | | ||
| `StatusCode` | *int* | :heavy_check_mark: | N/A | | ||
| `RawResponse` | [*http.Response](https://pkg.go.dev/net/http#Response) | :heavy_minus_sign: | N/A | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Nested | ||
|
||
### Available Operations | ||
|
||
* [Get](#get) | ||
|
||
## Get | ||
|
||
### Example Usage | ||
|
||
```go | ||
package main | ||
|
||
import( | ||
"context" | ||
"log" | ||
"openapi" | ||
"openapi/pkg/models/shared" | ||
) | ||
|
||
func main() { | ||
s := sdk.New( | ||
sdk.WithSecurity(shared.Security{ | ||
APIKeyAuth: sdk.String("Token YOUR_API_KEY"), | ||
}), | ||
sdk.WithGlobalPathParam(100), | ||
sdk.WithGlobalQueryParam("some example global query param"), | ||
) | ||
|
||
ctx := context.Background() | ||
res, err := s.Nested.Get(ctx) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if res.StatusCode == http.StatusOK { | ||
// handle response | ||
} | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Parameter | Type | Required | Description | | ||
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | | ||
| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | | ||
|
||
|
||
### Response | ||
|
||
**[*operations.NestedGetResponse](../../models/operations/nestedgetresponse.md), error** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# NestedFirst | ||
|
||
### Available Operations | ||
|
||
* [Get](#get) | ||
|
||
## Get | ||
|
||
### Example Usage | ||
|
||
```go | ||
package main | ||
|
||
import( | ||
"context" | ||
"log" | ||
"openapi" | ||
"openapi/pkg/models/shared" | ||
) | ||
|
||
func main() { | ||
s := sdk.New( | ||
sdk.WithSecurity(shared.Security{ | ||
APIKeyAuth: sdk.String("Token YOUR_API_KEY"), | ||
}), | ||
sdk.WithGlobalPathParam(100), | ||
sdk.WithGlobalQueryParam("some example global query param"), | ||
) | ||
|
||
ctx := context.Background() | ||
res, err := s.NestedFirst.Get(ctx) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if res.StatusCode == http.StatusOK { | ||
// handle response | ||
} | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Parameter | Type | Required | Description | | ||
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | | ||
| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | | ||
|
||
|
||
### Response | ||
|
||
**[*operations.NestedFirstGetResponse](../../models/operations/nestedfirstgetresponse.md), error** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# NestedSecond | ||
|
||
### Available Operations | ||
|
||
* [Get](#get) | ||
|
||
## Get | ||
|
||
### Example Usage | ||
|
||
```go | ||
package main | ||
|
||
import( | ||
"context" | ||
"log" | ||
"openapi" | ||
"openapi/pkg/models/shared" | ||
) | ||
|
||
func main() { | ||
s := sdk.New( | ||
sdk.WithSecurity(shared.Security{ | ||
APIKeyAuth: sdk.String("Token YOUR_API_KEY"), | ||
}), | ||
sdk.WithGlobalPathParam(100), | ||
sdk.WithGlobalQueryParam("some example global query param"), | ||
) | ||
|
||
ctx := context.Background() | ||
res, err := s.NestedSecond.Get(ctx) | ||
if err != nil { | ||
log.Fatal(err) | ||
} | ||
|
||
if res.StatusCode == http.StatusOK { | ||
// handle response | ||
} | ||
} | ||
``` | ||
|
||
### Parameters | ||
|
||
| Parameter | Type | Required | Description | | ||
| ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | ----------------------------------------------------- | | ||
| `ctx` | [context.Context](https://pkg.go.dev/context#Context) | :heavy_check_mark: | The context to use for the request. | | ||
|
||
|
||
### Response | ||
|
||
**[*operations.NestedSecondGetResponse](../../models/operations/nestedsecondgetresponse.md), error** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.