You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your interest in contributing to this repository. Please note that this repository contains generated code. As such, we do not accept direct changes or pull requests. Instead, we encourage you to follow the guidelines below to report issues and suggest improvements.
4
+
5
+
## How to Report Issues
6
+
7
+
If you encounter any bugs or have suggestions for improvements, please open an issue on GitHub. When reporting an issue, please provide as much detail as possible to help us reproduce the problem. This includes:
8
+
9
+
- A clear and descriptive title
10
+
- Steps to reproduce the issue
11
+
- Expected and actual behavior
12
+
- Any relevant logs, screenshots, or error messages
13
+
- Information about your environment (e.g., operating system, software versions)
14
+
- For example can be collected using the `npx envinfo` command from your terminal if you have Node.js installed
15
+
16
+
## Issue Triage and Upstream Fixes
17
+
18
+
We will review and triage issues as quickly as possible. Our goal is to address bugs and incorporate improvements in the upstream source code. Fixes will be included in the next generation of the generated code.
19
+
20
+
## Contact
21
+
22
+
If you have any questions or need further assistance, please feel free to reach out by opening an issue.
Copy file name to clipboardExpand all lines: NUGET.md
+28-58Lines changed: 28 additions & 58 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,60 +8,23 @@
8
8
9
9
```csharp
10
10
usingShippo;
11
-
usingShippo.Models.Components;
12
11
usingShippo.Models.Requests;
13
-
14
-
varsdk=newShippoSDK(
15
-
apiKeyHeader: "<YOUR_API_KEY_HERE>",
16
-
shippoApiVersion: "2018-02-08");
17
-
18
-
varres=awaitsdk.Addresses.ListAsync(
19
-
page: 1,
20
-
results: 5,
21
-
shippoApiVersion: "2018-02-08");
22
-
23
-
// handle response
24
-
```
25
-
<!-- End SDK Example Usage [usage] -->
26
-
27
-
<!-- Start Global Parameters [global-parameters] -->
28
-
## Global Parameters
29
-
30
-
## Global Parameters
31
-
32
-
A parameter is configured globally. This parameter may be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.
33
-
34
-
For example, you can set `SHIPPO-API-VERSION` to `"2018-02-08"` at SDK initialization and then you do not have to pass the same value on calls to operations like `List`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
35
-
36
-
37
-
### Available Globals
38
-
39
-
The following global parameter is available.
40
-
41
-
| Name | Type | Required | Description |
42
-
| ---- | ---- |:--------:| ----------- |
43
-
| shippoApiVersion | string || String used to pick a non-default API version to use |
44
-
45
-
46
-
### Example
47
-
48
-
```csharp
49
-
usingShippo;
50
12
usingShippo.Models.Components;
51
-
usingShippo.Models.Requests;
52
13
53
14
varsdk=newShippoSDK(
54
15
apiKeyHeader: "<YOUR_API_KEY_HERE>",
55
-
shippoApiVersion: "2018-02-08");
16
+
shippoApiVersion: "2018-02-08"
17
+
);
56
18
57
19
varres=awaitsdk.Addresses.ListAsync(
58
20
page: 1,
59
21
results: 5,
60
-
shippoApiVersion: "2018-02-08");
22
+
shippoApiVersion: "2018-02-08"
23
+
);
61
24
62
25
// handle response
63
26
```
64
-
<!-- End Global Parameters [global-parameters] -->
27
+
<!-- End SDK Example Usage [usage] -->
65
28
66
29
<!-- Start Error Handling [errors] -->
67
30
## Error Handling
@@ -79,45 +42,50 @@ Handling errors in this SDK should largely match your expectations. All operati
0 commit comments