Skip to content

Commit 13db907

Browse files
Mike Kistlergermanattanasio
authored andcommitted
Fix NLU missed in version to serviceVersion change (#633)
1 parent 34ae1e7 commit 13db907

File tree

1 file changed

+2
-2
lines changed
  • natural-language-understanding

1 file changed

+2
-2
lines changed

natural-language-understanding/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { BaseService } from '../lib/base_service';
2626

2727
class NaturalLanguageUnderstandingV1 extends BaseService {
2828
name: string; // set by prototype to 'natural-language-understanding'
29-
version: string; // set by prototype to 'v1'
29+
serviceVersion: string; // set by prototype to 'v1'
3030

3131
static VERSION_DATE_2016_01_23: string = '2016-01-23';
3232
static VERSION_DATE_2017_02_27: string = '2017-02-27';
@@ -207,7 +207,7 @@ class NaturalLanguageUnderstandingV1 extends BaseService {
207207

208208
NaturalLanguageUnderstandingV1.prototype.name =
209209
'natural-language-understanding';
210-
NaturalLanguageUnderstandingV1.prototype.version = 'v1';
210+
NaturalLanguageUnderstandingV1.prototype.serviceVersion = 'v1';
211211

212212
/*************************
213213
* interfaces

0 commit comments

Comments
 (0)