@@ -48,15 +48,15 @@ The samples below show how a published SDK artifact is used:
4848
4949Gradle:
5050``` groovy
51- implementation 'io.bzclient :bzclient:0.3.6 '
51+ implementation 'com.benzinga :bzclient:0.3.7 '
5252```
5353
5454Maven:
5555``` xml
5656<dependency >
57- <groupId >io.bzclient </groupId >
57+ <groupId >com.benzinga </groupId >
5858 <artifactId >bzclient</artifactId >
59- <version >0.3.6 </version >
59+ <version >0.3.7 </version >
6060</dependency >
6161```
6262
@@ -83,8 +83,8 @@ gradlew.bat publishToMavenLocal -Pskip.signing
8383``` java
8484package hello.world ;
8585
86- import io.bzclient .bzclient.Bzclient ;
87- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
86+ import com.benzinga .bzclient.Bzclient ;
87+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
8888import java.lang.Exception ;
8989
9090public class Application {
@@ -123,8 +123,8 @@ To authenticate with the API the `apiKeyAuth` parameter must be set when initial
123123``` java
124124package hello.world ;
125125
126- import io.bzclient .bzclient.Bzclient ;
127- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
126+ import com.benzinga .bzclient.Bzclient ;
127+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
128128import java.lang.Exception ;
129129
130130public class Application {
@@ -335,10 +335,10 @@ To change the default retry strategy for a single API call, you can provide a `R
335335``` java
336336package hello.world ;
337337
338- import io.bzclient .bzclient.Bzclient ;
339- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
340- import io.bzclient .bzclient.utils.BackoffStrategy ;
341- import io.bzclient .bzclient.utils.RetryConfig ;
338+ import com.benzinga .bzclient.Bzclient ;
339+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
340+ import com.benzinga .bzclient.utils.BackoffStrategy ;
341+ import com.benzinga .bzclient.utils.RetryConfig ;
342342import java.lang.Exception ;
343343import java.util.concurrent.TimeUnit ;
344344
@@ -376,10 +376,10 @@ If you'd like to override the default retry strategy for all operations that sup
376376``` java
377377package hello.world ;
378378
379- import io.bzclient .bzclient.Bzclient ;
380- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
381- import io.bzclient .bzclient.utils.BackoffStrategy ;
382- import io.bzclient .bzclient.utils.RetryConfig ;
379+ import com.benzinga .bzclient.Bzclient ;
380+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
381+ import com.benzinga .bzclient.utils.BackoffStrategy ;
382+ import com.benzinga .bzclient.utils.RetryConfig ;
383383import java.lang.Exception ;
384384import java.util.concurrent.TimeUnit ;
385385
@@ -431,10 +431,10 @@ By default, an API error will throw a `models/errors/APIException` exception. Wh
431431``` java
432432package hello.world ;
433433
434- import io.bzclient .bzclient.Bzclient ;
435- import io.bzclient .bzclient.models.errors.ApiErrorResponse ;
436- import io.bzclient .bzclient.models.operations.GetAnalystInsightsV1Request ;
437- import io.bzclient .bzclient.models.operations.GetAnalystInsightsV1Response ;
434+ import com.benzinga .bzclient.Bzclient ;
435+ import com.benzinga .bzclient.models.errors.ApiErrorResponse ;
436+ import com.benzinga .bzclient.models.operations.GetAnalystInsightsV1Request ;
437+ import com.benzinga .bzclient.models.operations.GetAnalystInsightsV1Response ;
438438import java.lang.Exception ;
439439
440440public class Application {
@@ -480,8 +480,8 @@ You can override the default server globally using the `.serverIndex(int serverI
480480``` java
481481package hello.world ;
482482
483- import io.bzclient .bzclient.Bzclient ;
484- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
483+ import com.benzinga .bzclient.Bzclient ;
484+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
485485import java.lang.Exception ;
486486
487487public class Application {
@@ -511,8 +511,8 @@ The default server can also be overridden globally using the `.serverURL(String
511511``` java
512512package hello.world ;
513513
514- import io.bzclient .bzclient.Bzclient ;
515- import io.bzclient .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
514+ import com.benzinga .bzclient.Bzclient ;
515+ import com.benzinga .bzclient.models.operations.GetAnalystReportsRawTextDataResponse ;
516516import java.lang.Exception ;
517517
518518public class Application {
0 commit comments