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
@@ -177,11 +177,11 @@ var res = await sdk.ConnectSessions.CreateAsync(
177
177
178
178
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
179
179
```csharp
180
-
usingStackOne.Client;
181
-
usingStackOne.Client.Models.Components;
180
+
usingStackOneHQ.Client;
181
+
usingStackOneHQ.Client.Models.Components;
182
182
usingSystem.Collections.Generic;
183
183
184
-
varsdk=newStackOneClient(
184
+
varsdk=newStackOneHQClient(
185
185
retryConfig: newRetryConfig(
186
186
strategy: RetryConfig.RetryStrategy.BACKOFF,
187
187
backoff: newBackoffStrategy(
@@ -229,7 +229,7 @@ var res = await sdk.ConnectSessions.CreateAsync(req);
229
229
230
230
Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an exception.
231
231
232
-
By default, an API error will raise a `StackOne.Client.Models.Errors.APIException` exception, which has the following properties:
232
+
By default, an API error will raise a `StackOneHQ.Client.Models.Errors.APIException` exception, which has the following properties:
@@ -239,30 +239,30 @@ By default, an API error will raise a `StackOne.Client.Models.Errors.APIExceptio
239
239
240
240
When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `CreateAsync` method throws the following exceptions:
The default server can be overridden globally by passing a URL to the `serverUrl: string` optional parameter when initializing the SDK client instance. For example:
@@ -749,11 +749,11 @@ var res = await sdk.ConnectSessions.CreateAsync(
749
749
750
750
If you'd like to override the default retry strategy for all operations that support retries, you can use the `RetryConfig` optional parameter when intitializing the SDK:
751
751
```csharp
752
-
usingStackOne.Client;
753
-
usingStackOne.Client.Models.Components;
752
+
usingStackOneHQ.Client;
753
+
usingStackOneHQ.Client.Models.Components;
754
754
usingSystem.Collections.Generic;
755
755
756
-
varsdk=newStackOneClient(
756
+
varsdk=newStackOneHQClient(
757
757
retryConfig: newRetryConfig(
758
758
strategy: RetryConfig.RetryStrategy.BACKOFF,
759
759
backoff: newBackoffStrategy(
@@ -801,7 +801,7 @@ var res = await sdk.ConnectSessions.CreateAsync(req);
801
801
802
802
Handling errors in this SDK should largely match your expectations. All operations return a response object or throw an exception.
803
803
804
-
By default, an API error will raise a `StackOne.Client.Models.Errors.APIException` exception, which has the following properties:
804
+
By default, an API error will raise a `StackOneHQ.Client.Models.Errors.APIException` exception, which has the following properties:
@@ -811,30 +811,30 @@ By default, an API error will raise a `StackOne.Client.Models.Errors.APIExceptio
811
811
812
812
When custom error responses are specified for an operation, the SDK may also throw their associated exceptions. You can refer to respective *Errors* tables in SDK docs for more details on possible exception types for each operation. For example, the `CreateAsync` method throws the following exceptions:
The default server can be overridden globally by passing a URL to the `serverUrl: string` optional parameter when initializing the SDK client instance. For example:
0 commit comments