@ondewo/csi-client-angular 2.3.1 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3534,3 +3534,2019 @@ export declare module PlatformMapping {
3534
3534
  platformInfo?: CustomPlatformInfo.AsProtobufJSON[] | null;
3535
3535
  }
3536
3536
  }
3537
+ /**
3538
+ * Message implementation for ondewo.nlu.FullTextSearchRequest
3539
+ */
3540
+ export declare class FullTextSearchRequest implements GrpcMessage {
3541
+ static id: string;
3542
+ /**
3543
+ * Deserialize binary data to message
3544
+ * @param instance message instance
3545
+ */
3546
+ static deserializeBinary(bytes: ByteSource): FullTextSearchRequest;
3547
+ /**
3548
+ * Check all the properties and set default protobuf values if necessary
3549
+ * @param _instance message instance
3550
+ */
3551
+ static refineValues(_instance: FullTextSearchRequest): void;
3552
+ /**
3553
+ * Deserializes / reads binary message into message instance using provided binary reader
3554
+ * @param _instance message instance
3555
+ * @param _reader binary reader instance
3556
+ */
3557
+ static deserializeBinaryFromReader(_instance: FullTextSearchRequest, _reader: BinaryReader): void;
3558
+ /**
3559
+ * Serializes a message to binary format using provided binary reader
3560
+ * @param _instance message instance
3561
+ * @param _writer binary writer instance
3562
+ */
3563
+ static serializeBinaryToWriter(_instance: FullTextSearchRequest, _writer: BinaryWriter): void;
3564
+ private _parent?;
3565
+ private _languageCode?;
3566
+ private _term?;
3567
+ private _pageToken?;
3568
+ /**
3569
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
3570
+ * @param _value initial values object or instance of FullTextSearchRequest to deeply clone from
3571
+ */
3572
+ constructor(_value?: RecursivePartial<FullTextSearchRequest.AsObject>);
3573
+ get parent(): string | undefined;
3574
+ set parent(value: string | undefined);
3575
+ get languageCode(): string | undefined;
3576
+ set languageCode(value: string | undefined);
3577
+ get term(): string | undefined;
3578
+ set term(value: string | undefined);
3579
+ get pageToken(): string | undefined;
3580
+ set pageToken(value: string | undefined);
3581
+ /**
3582
+ * Serialize message to binary data
3583
+ * @param instance message instance
3584
+ */
3585
+ serializeBinary(): any;
3586
+ /**
3587
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
3588
+ */
3589
+ toObject(): FullTextSearchRequest.AsObject;
3590
+ /**
3591
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
3592
+ */
3593
+ toJSON(): FullTextSearchRequest.AsObject;
3594
+ /**
3595
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
3596
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
3597
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
3598
+ */
3599
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchRequest.AsProtobufJSON;
3600
+ }
3601
+ export declare module FullTextSearchRequest {
3602
+ /**
3603
+ * Standard JavaScript object representation for FullTextSearchRequest
3604
+ */
3605
+ interface AsObject {
3606
+ parent?: string;
3607
+ languageCode?: string;
3608
+ term?: string;
3609
+ pageToken?: string;
3610
+ }
3611
+ /**
3612
+ * Protobuf JSON representation for FullTextSearchRequest
3613
+ */
3614
+ interface AsProtobufJSON {
3615
+ parent?: string;
3616
+ languageCode?: string;
3617
+ term?: string;
3618
+ pageToken?: string;
3619
+ }
3620
+ enum QueryType {
3621
+ ALL = 0,
3622
+ OndewoEntityQuery = 1,
3623
+ OndewoEntityTypeQuery = 2,
3624
+ OndewoEntitySynonymQuery = 3,
3625
+ OndewoIntentQuery = 4,
3626
+ OndewoIntentContextInQuery = 5,
3627
+ OndewoIntentContextOutQuery = 6,
3628
+ OndewoIntentUsersaysQuery = 7,
3629
+ OndewoIntentTagsQuery = 8,
3630
+ OndewoIntentParametersQuery = 9,
3631
+ OndewoIntentResponseQuery = 10
3632
+ }
3633
+ }
3634
+ /**
3635
+ * Message implementation for ondewo.nlu.FullTextSearchResponseEntityType
3636
+ */
3637
+ export declare class FullTextSearchResponseEntityType implements GrpcMessage {
3638
+ static id: string;
3639
+ /**
3640
+ * Deserialize binary data to message
3641
+ * @param instance message instance
3642
+ */
3643
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseEntityType;
3644
+ /**
3645
+ * Check all the properties and set default protobuf values if necessary
3646
+ * @param _instance message instance
3647
+ */
3648
+ static refineValues(_instance: FullTextSearchResponseEntityType): void;
3649
+ /**
3650
+ * Deserializes / reads binary message into message instance using provided binary reader
3651
+ * @param _instance message instance
3652
+ * @param _reader binary reader instance
3653
+ */
3654
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseEntityType, _reader: BinaryReader): void;
3655
+ /**
3656
+ * Serializes a message to binary format using provided binary reader
3657
+ * @param _instance message instance
3658
+ * @param _writer binary writer instance
3659
+ */
3660
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseEntityType, _writer: BinaryWriter): void;
3661
+ private _parent?;
3662
+ private _languageCode?;
3663
+ private _entityTypeResults?;
3664
+ private _term?;
3665
+ private _elasticQuery?;
3666
+ private _time?;
3667
+ private _nextPageToken?;
3668
+ /**
3669
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
3670
+ * @param _value initial values object or instance of FullTextSearchResponseEntityType to deeply clone from
3671
+ */
3672
+ constructor(_value?: RecursivePartial<FullTextSearchResponseEntityType.AsObject>);
3673
+ get parent(): string | undefined;
3674
+ set parent(value: string | undefined);
3675
+ get languageCode(): string | undefined;
3676
+ set languageCode(value: string | undefined);
3677
+ get entityTypeResults(): FullTextSearchResponseEntityType.EntityTypeSearchResult[] | undefined;
3678
+ set entityTypeResults(value: FullTextSearchResponseEntityType.EntityTypeSearchResult[] | undefined);
3679
+ get term(): string | undefined;
3680
+ set term(value: string | undefined);
3681
+ get elasticQuery(): string | undefined;
3682
+ set elasticQuery(value: string | undefined);
3683
+ get time(): number | undefined;
3684
+ set time(value: number | undefined);
3685
+ get nextPageToken(): string | undefined;
3686
+ set nextPageToken(value: string | undefined);
3687
+ /**
3688
+ * Serialize message to binary data
3689
+ * @param instance message instance
3690
+ */
3691
+ serializeBinary(): any;
3692
+ /**
3693
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
3694
+ */
3695
+ toObject(): FullTextSearchResponseEntityType.AsObject;
3696
+ /**
3697
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
3698
+ */
3699
+ toJSON(): FullTextSearchResponseEntityType.AsObject;
3700
+ /**
3701
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
3702
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
3703
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
3704
+ */
3705
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseEntityType.AsProtobufJSON;
3706
+ }
3707
+ export declare module FullTextSearchResponseEntityType {
3708
+ /**
3709
+ * Standard JavaScript object representation for FullTextSearchResponseEntityType
3710
+ */
3711
+ interface AsObject {
3712
+ parent?: string;
3713
+ languageCode?: string;
3714
+ entityTypeResults?: FullTextSearchResponseEntityType.EntityTypeSearchResult.AsObject[];
3715
+ term?: string;
3716
+ elasticQuery?: string;
3717
+ time?: number;
3718
+ nextPageToken?: string;
3719
+ }
3720
+ /**
3721
+ * Protobuf JSON representation for FullTextSearchResponseEntityType
3722
+ */
3723
+ interface AsProtobufJSON {
3724
+ parent?: string;
3725
+ languageCode?: string;
3726
+ entityTypeResults?: FullTextSearchResponseEntityType.EntityTypeSearchResult.AsProtobufJSON[] | null;
3727
+ term?: string;
3728
+ elasticQuery?: string;
3729
+ time?: number;
3730
+ nextPageToken?: string;
3731
+ }
3732
+ /**
3733
+ * Message implementation for ondewo.nlu.EntityTypeSearchResult
3734
+ */
3735
+ class EntityTypeSearchResult implements GrpcMessage {
3736
+ static id: string;
3737
+ /**
3738
+ * Deserialize binary data to message
3739
+ * @param instance message instance
3740
+ */
3741
+ static deserializeBinary(bytes: ByteSource): EntityTypeSearchResult;
3742
+ /**
3743
+ * Check all the properties and set default protobuf values if necessary
3744
+ * @param _instance message instance
3745
+ */
3746
+ static refineValues(_instance: EntityTypeSearchResult): void;
3747
+ /**
3748
+ * Deserializes / reads binary message into message instance using provided binary reader
3749
+ * @param _instance message instance
3750
+ * @param _reader binary reader instance
3751
+ */
3752
+ static deserializeBinaryFromReader(_instance: EntityTypeSearchResult, _reader: BinaryReader): void;
3753
+ /**
3754
+ * Serializes a message to binary format using provided binary reader
3755
+ * @param _instance message instance
3756
+ * @param _writer binary writer instance
3757
+ */
3758
+ static serializeBinaryToWriter(_instance: EntityTypeSearchResult, _writer: BinaryWriter): void;
3759
+ private _name?;
3760
+ private _displayName?;
3761
+ private _language?;
3762
+ /**
3763
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
3764
+ * @param _value initial values object or instance of EntityTypeSearchResult to deeply clone from
3765
+ */
3766
+ constructor(_value?: RecursivePartial<EntityTypeSearchResult.AsObject>);
3767
+ get name(): string | undefined;
3768
+ set name(value: string | undefined);
3769
+ get displayName(): string | undefined;
3770
+ set displayName(value: string | undefined);
3771
+ get language(): string | undefined;
3772
+ set language(value: string | undefined);
3773
+ /**
3774
+ * Serialize message to binary data
3775
+ * @param instance message instance
3776
+ */
3777
+ serializeBinary(): any;
3778
+ /**
3779
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
3780
+ */
3781
+ toObject(): EntityTypeSearchResult.AsObject;
3782
+ /**
3783
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
3784
+ */
3785
+ toJSON(): EntityTypeSearchResult.AsObject;
3786
+ /**
3787
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
3788
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
3789
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
3790
+ */
3791
+ toProtobufJSON(options?: ToProtobufJSONOptions): EntityTypeSearchResult.AsProtobufJSON;
3792
+ }
3793
+ module EntityTypeSearchResult {
3794
+ /**
3795
+ * Standard JavaScript object representation for EntityTypeSearchResult
3796
+ */
3797
+ interface AsObject {
3798
+ name?: string;
3799
+ displayName?: string;
3800
+ language?: string;
3801
+ }
3802
+ /**
3803
+ * Protobuf JSON representation for EntityTypeSearchResult
3804
+ */
3805
+ interface AsProtobufJSON {
3806
+ name?: string;
3807
+ displayName?: string;
3808
+ language?: string;
3809
+ }
3810
+ }
3811
+ }
3812
+ /**
3813
+ * Message implementation for ondewo.nlu.FullTextSearchResponseEntity
3814
+ */
3815
+ export declare class FullTextSearchResponseEntity implements GrpcMessage {
3816
+ static id: string;
3817
+ /**
3818
+ * Deserialize binary data to message
3819
+ * @param instance message instance
3820
+ */
3821
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseEntity;
3822
+ /**
3823
+ * Check all the properties and set default protobuf values if necessary
3824
+ * @param _instance message instance
3825
+ */
3826
+ static refineValues(_instance: FullTextSearchResponseEntity): void;
3827
+ /**
3828
+ * Deserializes / reads binary message into message instance using provided binary reader
3829
+ * @param _instance message instance
3830
+ * @param _reader binary reader instance
3831
+ */
3832
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseEntity, _reader: BinaryReader): void;
3833
+ /**
3834
+ * Serializes a message to binary format using provided binary reader
3835
+ * @param _instance message instance
3836
+ * @param _writer binary writer instance
3837
+ */
3838
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseEntity, _writer: BinaryWriter): void;
3839
+ private _parent?;
3840
+ private _languageCode?;
3841
+ private _entityResults?;
3842
+ private _term?;
3843
+ private _elasticQuery?;
3844
+ private _time?;
3845
+ private _nextPageToken?;
3846
+ /**
3847
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
3848
+ * @param _value initial values object or instance of FullTextSearchResponseEntity to deeply clone from
3849
+ */
3850
+ constructor(_value?: RecursivePartial<FullTextSearchResponseEntity.AsObject>);
3851
+ get parent(): string | undefined;
3852
+ set parent(value: string | undefined);
3853
+ get languageCode(): string | undefined;
3854
+ set languageCode(value: string | undefined);
3855
+ get entityResults(): FullTextSearchResponseEntity.EntitySearchResult[] | undefined;
3856
+ set entityResults(value: FullTextSearchResponseEntity.EntitySearchResult[] | undefined);
3857
+ get term(): string | undefined;
3858
+ set term(value: string | undefined);
3859
+ get elasticQuery(): string | undefined;
3860
+ set elasticQuery(value: string | undefined);
3861
+ get time(): number | undefined;
3862
+ set time(value: number | undefined);
3863
+ get nextPageToken(): string | undefined;
3864
+ set nextPageToken(value: string | undefined);
3865
+ /**
3866
+ * Serialize message to binary data
3867
+ * @param instance message instance
3868
+ */
3869
+ serializeBinary(): any;
3870
+ /**
3871
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
3872
+ */
3873
+ toObject(): FullTextSearchResponseEntity.AsObject;
3874
+ /**
3875
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
3876
+ */
3877
+ toJSON(): FullTextSearchResponseEntity.AsObject;
3878
+ /**
3879
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
3880
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
3881
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
3882
+ */
3883
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseEntity.AsProtobufJSON;
3884
+ }
3885
+ export declare module FullTextSearchResponseEntity {
3886
+ /**
3887
+ * Standard JavaScript object representation for FullTextSearchResponseEntity
3888
+ */
3889
+ interface AsObject {
3890
+ parent?: string;
3891
+ languageCode?: string;
3892
+ entityResults?: FullTextSearchResponseEntity.EntitySearchResult.AsObject[];
3893
+ term?: string;
3894
+ elasticQuery?: string;
3895
+ time?: number;
3896
+ nextPageToken?: string;
3897
+ }
3898
+ /**
3899
+ * Protobuf JSON representation for FullTextSearchResponseEntity
3900
+ */
3901
+ interface AsProtobufJSON {
3902
+ parent?: string;
3903
+ languageCode?: string;
3904
+ entityResults?: FullTextSearchResponseEntity.EntitySearchResult.AsProtobufJSON[] | null;
3905
+ term?: string;
3906
+ elasticQuery?: string;
3907
+ time?: number;
3908
+ nextPageToken?: string;
3909
+ }
3910
+ /**
3911
+ * Message implementation for ondewo.nlu.EntitySearchResult
3912
+ */
3913
+ class EntitySearchResult implements GrpcMessage {
3914
+ static id: string;
3915
+ /**
3916
+ * Deserialize binary data to message
3917
+ * @param instance message instance
3918
+ */
3919
+ static deserializeBinary(bytes: ByteSource): EntitySearchResult;
3920
+ /**
3921
+ * Check all the properties and set default protobuf values if necessary
3922
+ * @param _instance message instance
3923
+ */
3924
+ static refineValues(_instance: EntitySearchResult): void;
3925
+ /**
3926
+ * Deserializes / reads binary message into message instance using provided binary reader
3927
+ * @param _instance message instance
3928
+ * @param _reader binary reader instance
3929
+ */
3930
+ static deserializeBinaryFromReader(_instance: EntitySearchResult, _reader: BinaryReader): void;
3931
+ /**
3932
+ * Serializes a message to binary format using provided binary reader
3933
+ * @param _instance message instance
3934
+ * @param _writer binary writer instance
3935
+ */
3936
+ static serializeBinaryToWriter(_instance: EntitySearchResult, _writer: BinaryWriter): void;
3937
+ private _name?;
3938
+ private _displayName?;
3939
+ private _entityTypeName?;
3940
+ private _language?;
3941
+ /**
3942
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
3943
+ * @param _value initial values object or instance of EntitySearchResult to deeply clone from
3944
+ */
3945
+ constructor(_value?: RecursivePartial<EntitySearchResult.AsObject>);
3946
+ get name(): string | undefined;
3947
+ set name(value: string | undefined);
3948
+ get displayName(): string | undefined;
3949
+ set displayName(value: string | undefined);
3950
+ get entityTypeName(): string | undefined;
3951
+ set entityTypeName(value: string | undefined);
3952
+ get language(): string | undefined;
3953
+ set language(value: string | undefined);
3954
+ /**
3955
+ * Serialize message to binary data
3956
+ * @param instance message instance
3957
+ */
3958
+ serializeBinary(): any;
3959
+ /**
3960
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
3961
+ */
3962
+ toObject(): EntitySearchResult.AsObject;
3963
+ /**
3964
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
3965
+ */
3966
+ toJSON(): EntitySearchResult.AsObject;
3967
+ /**
3968
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
3969
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
3970
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
3971
+ */
3972
+ toProtobufJSON(options?: ToProtobufJSONOptions): EntitySearchResult.AsProtobufJSON;
3973
+ }
3974
+ module EntitySearchResult {
3975
+ /**
3976
+ * Standard JavaScript object representation for EntitySearchResult
3977
+ */
3978
+ interface AsObject {
3979
+ name?: string;
3980
+ displayName?: string;
3981
+ entityTypeName?: string;
3982
+ language?: string;
3983
+ }
3984
+ /**
3985
+ * Protobuf JSON representation for EntitySearchResult
3986
+ */
3987
+ interface AsProtobufJSON {
3988
+ name?: string;
3989
+ displayName?: string;
3990
+ entityTypeName?: string;
3991
+ language?: string;
3992
+ }
3993
+ }
3994
+ }
3995
+ /**
3996
+ * Message implementation for ondewo.nlu.FullTextSearchResponseEntitySynonym
3997
+ */
3998
+ export declare class FullTextSearchResponseEntitySynonym implements GrpcMessage {
3999
+ static id: string;
4000
+ /**
4001
+ * Deserialize binary data to message
4002
+ * @param instance message instance
4003
+ */
4004
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseEntitySynonym;
4005
+ /**
4006
+ * Check all the properties and set default protobuf values if necessary
4007
+ * @param _instance message instance
4008
+ */
4009
+ static refineValues(_instance: FullTextSearchResponseEntitySynonym): void;
4010
+ /**
4011
+ * Deserializes / reads binary message into message instance using provided binary reader
4012
+ * @param _instance message instance
4013
+ * @param _reader binary reader instance
4014
+ */
4015
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseEntitySynonym, _reader: BinaryReader): void;
4016
+ /**
4017
+ * Serializes a message to binary format using provided binary reader
4018
+ * @param _instance message instance
4019
+ * @param _writer binary writer instance
4020
+ */
4021
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseEntitySynonym, _writer: BinaryWriter): void;
4022
+ private _parent?;
4023
+ private _languageCode?;
4024
+ private _entitySynonymResults?;
4025
+ private _term?;
4026
+ private _elasticQuery?;
4027
+ private _time?;
4028
+ private _nextPageToken?;
4029
+ /**
4030
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4031
+ * @param _value initial values object or instance of FullTextSearchResponseEntitySynonym to deeply clone from
4032
+ */
4033
+ constructor(_value?: RecursivePartial<FullTextSearchResponseEntitySynonym.AsObject>);
4034
+ get parent(): string | undefined;
4035
+ set parent(value: string | undefined);
4036
+ get languageCode(): string | undefined;
4037
+ set languageCode(value: string | undefined);
4038
+ get entitySynonymResults(): FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult[] | undefined;
4039
+ set entitySynonymResults(value: FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult[] | undefined);
4040
+ get term(): string | undefined;
4041
+ set term(value: string | undefined);
4042
+ get elasticQuery(): string | undefined;
4043
+ set elasticQuery(value: string | undefined);
4044
+ get time(): number | undefined;
4045
+ set time(value: number | undefined);
4046
+ get nextPageToken(): string | undefined;
4047
+ set nextPageToken(value: string | undefined);
4048
+ /**
4049
+ * Serialize message to binary data
4050
+ * @param instance message instance
4051
+ */
4052
+ serializeBinary(): any;
4053
+ /**
4054
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4055
+ */
4056
+ toObject(): FullTextSearchResponseEntitySynonym.AsObject;
4057
+ /**
4058
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4059
+ */
4060
+ toJSON(): FullTextSearchResponseEntitySynonym.AsObject;
4061
+ /**
4062
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4063
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4064
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4065
+ */
4066
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseEntitySynonym.AsProtobufJSON;
4067
+ }
4068
+ export declare module FullTextSearchResponseEntitySynonym {
4069
+ /**
4070
+ * Standard JavaScript object representation for FullTextSearchResponseEntitySynonym
4071
+ */
4072
+ interface AsObject {
4073
+ parent?: string;
4074
+ languageCode?: string;
4075
+ entitySynonymResults?: FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.AsObject[];
4076
+ term?: string;
4077
+ elasticQuery?: string;
4078
+ time?: number;
4079
+ nextPageToken?: string;
4080
+ }
4081
+ /**
4082
+ * Protobuf JSON representation for FullTextSearchResponseEntitySynonym
4083
+ */
4084
+ interface AsProtobufJSON {
4085
+ parent?: string;
4086
+ languageCode?: string;
4087
+ entitySynonymResults?: FullTextSearchResponseEntitySynonym.EntitySynonymSearchResult.AsProtobufJSON[] | null;
4088
+ term?: string;
4089
+ elasticQuery?: string;
4090
+ time?: number;
4091
+ nextPageToken?: string;
4092
+ }
4093
+ /**
4094
+ * Message implementation for ondewo.nlu.EntitySynonymSearchResult
4095
+ */
4096
+ class EntitySynonymSearchResult implements GrpcMessage {
4097
+ static id: string;
4098
+ /**
4099
+ * Deserialize binary data to message
4100
+ * @param instance message instance
4101
+ */
4102
+ static deserializeBinary(bytes: ByteSource): EntitySynonymSearchResult;
4103
+ /**
4104
+ * Check all the properties and set default protobuf values if necessary
4105
+ * @param _instance message instance
4106
+ */
4107
+ static refineValues(_instance: EntitySynonymSearchResult): void;
4108
+ /**
4109
+ * Deserializes / reads binary message into message instance using provided binary reader
4110
+ * @param _instance message instance
4111
+ * @param _reader binary reader instance
4112
+ */
4113
+ static deserializeBinaryFromReader(_instance: EntitySynonymSearchResult, _reader: BinaryReader): void;
4114
+ /**
4115
+ * Serializes a message to binary format using provided binary reader
4116
+ * @param _instance message instance
4117
+ * @param _writer binary writer instance
4118
+ */
4119
+ static serializeBinaryToWriter(_instance: EntitySynonymSearchResult, _writer: BinaryWriter): void;
4120
+ private _name?;
4121
+ private _displayName?;
4122
+ private _entityTypeName?;
4123
+ private _entityName?;
4124
+ private _language?;
4125
+ /**
4126
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4127
+ * @param _value initial values object or instance of EntitySynonymSearchResult to deeply clone from
4128
+ */
4129
+ constructor(_value?: RecursivePartial<EntitySynonymSearchResult.AsObject>);
4130
+ get name(): string | undefined;
4131
+ set name(value: string | undefined);
4132
+ get displayName(): string | undefined;
4133
+ set displayName(value: string | undefined);
4134
+ get entityTypeName(): string | undefined;
4135
+ set entityTypeName(value: string | undefined);
4136
+ get entityName(): string | undefined;
4137
+ set entityName(value: string | undefined);
4138
+ get language(): string | undefined;
4139
+ set language(value: string | undefined);
4140
+ /**
4141
+ * Serialize message to binary data
4142
+ * @param instance message instance
4143
+ */
4144
+ serializeBinary(): any;
4145
+ /**
4146
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4147
+ */
4148
+ toObject(): EntitySynonymSearchResult.AsObject;
4149
+ /**
4150
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4151
+ */
4152
+ toJSON(): EntitySynonymSearchResult.AsObject;
4153
+ /**
4154
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4155
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4156
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4157
+ */
4158
+ toProtobufJSON(options?: ToProtobufJSONOptions): EntitySynonymSearchResult.AsProtobufJSON;
4159
+ }
4160
+ module EntitySynonymSearchResult {
4161
+ /**
4162
+ * Standard JavaScript object representation for EntitySynonymSearchResult
4163
+ */
4164
+ interface AsObject {
4165
+ name?: string;
4166
+ displayName?: string;
4167
+ entityTypeName?: string;
4168
+ entityName?: string;
4169
+ language?: string;
4170
+ }
4171
+ /**
4172
+ * Protobuf JSON representation for EntitySynonymSearchResult
4173
+ */
4174
+ interface AsProtobufJSON {
4175
+ name?: string;
4176
+ displayName?: string;
4177
+ entityTypeName?: string;
4178
+ entityName?: string;
4179
+ language?: string;
4180
+ }
4181
+ }
4182
+ }
4183
+ /**
4184
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntent
4185
+ */
4186
+ export declare class FullTextSearchResponseIntent implements GrpcMessage {
4187
+ static id: string;
4188
+ /**
4189
+ * Deserialize binary data to message
4190
+ * @param instance message instance
4191
+ */
4192
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntent;
4193
+ /**
4194
+ * Check all the properties and set default protobuf values if necessary
4195
+ * @param _instance message instance
4196
+ */
4197
+ static refineValues(_instance: FullTextSearchResponseIntent): void;
4198
+ /**
4199
+ * Deserializes / reads binary message into message instance using provided binary reader
4200
+ * @param _instance message instance
4201
+ * @param _reader binary reader instance
4202
+ */
4203
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntent, _reader: BinaryReader): void;
4204
+ /**
4205
+ * Serializes a message to binary format using provided binary reader
4206
+ * @param _instance message instance
4207
+ * @param _writer binary writer instance
4208
+ */
4209
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntent, _writer: BinaryWriter): void;
4210
+ private _parent?;
4211
+ private _languageCode?;
4212
+ private _intentResults?;
4213
+ private _term?;
4214
+ private _elasticQuery?;
4215
+ private _time?;
4216
+ private _nextPageToken?;
4217
+ /**
4218
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4219
+ * @param _value initial values object or instance of FullTextSearchResponseIntent to deeply clone from
4220
+ */
4221
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntent.AsObject>);
4222
+ get parent(): string | undefined;
4223
+ set parent(value: string | undefined);
4224
+ get languageCode(): string | undefined;
4225
+ set languageCode(value: string | undefined);
4226
+ get intentResults(): FullTextSearchResponseIntent.IntentSearchResult[] | undefined;
4227
+ set intentResults(value: FullTextSearchResponseIntent.IntentSearchResult[] | undefined);
4228
+ get term(): string | undefined;
4229
+ set term(value: string | undefined);
4230
+ get elasticQuery(): string | undefined;
4231
+ set elasticQuery(value: string | undefined);
4232
+ get time(): number | undefined;
4233
+ set time(value: number | undefined);
4234
+ get nextPageToken(): string | undefined;
4235
+ set nextPageToken(value: string | undefined);
4236
+ /**
4237
+ * Serialize message to binary data
4238
+ * @param instance message instance
4239
+ */
4240
+ serializeBinary(): any;
4241
+ /**
4242
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4243
+ */
4244
+ toObject(): FullTextSearchResponseIntent.AsObject;
4245
+ /**
4246
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4247
+ */
4248
+ toJSON(): FullTextSearchResponseIntent.AsObject;
4249
+ /**
4250
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4251
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4252
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4253
+ */
4254
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntent.AsProtobufJSON;
4255
+ }
4256
+ export declare module FullTextSearchResponseIntent {
4257
+ /**
4258
+ * Standard JavaScript object representation for FullTextSearchResponseIntent
4259
+ */
4260
+ interface AsObject {
4261
+ parent?: string;
4262
+ languageCode?: string;
4263
+ intentResults?: FullTextSearchResponseIntent.IntentSearchResult.AsObject[];
4264
+ term?: string;
4265
+ elasticQuery?: string;
4266
+ time?: number;
4267
+ nextPageToken?: string;
4268
+ }
4269
+ /**
4270
+ * Protobuf JSON representation for FullTextSearchResponseIntent
4271
+ */
4272
+ interface AsProtobufJSON {
4273
+ parent?: string;
4274
+ languageCode?: string;
4275
+ intentResults?: FullTextSearchResponseIntent.IntentSearchResult.AsProtobufJSON[] | null;
4276
+ term?: string;
4277
+ elasticQuery?: string;
4278
+ time?: number;
4279
+ nextPageToken?: string;
4280
+ }
4281
+ /**
4282
+ * Message implementation for ondewo.nlu.IntentSearchResult
4283
+ */
4284
+ class IntentSearchResult implements GrpcMessage {
4285
+ static id: string;
4286
+ /**
4287
+ * Deserialize binary data to message
4288
+ * @param instance message instance
4289
+ */
4290
+ static deserializeBinary(bytes: ByteSource): IntentSearchResult;
4291
+ /**
4292
+ * Check all the properties and set default protobuf values if necessary
4293
+ * @param _instance message instance
4294
+ */
4295
+ static refineValues(_instance: IntentSearchResult): void;
4296
+ /**
4297
+ * Deserializes / reads binary message into message instance using provided binary reader
4298
+ * @param _instance message instance
4299
+ * @param _reader binary reader instance
4300
+ */
4301
+ static deserializeBinaryFromReader(_instance: IntentSearchResult, _reader: BinaryReader): void;
4302
+ /**
4303
+ * Serializes a message to binary format using provided binary reader
4304
+ * @param _instance message instance
4305
+ * @param _writer binary writer instance
4306
+ */
4307
+ static serializeBinaryToWriter(_instance: IntentSearchResult, _writer: BinaryWriter): void;
4308
+ private _name?;
4309
+ private _displayName?;
4310
+ private _domainName?;
4311
+ private _language?;
4312
+ /**
4313
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4314
+ * @param _value initial values object or instance of IntentSearchResult to deeply clone from
4315
+ */
4316
+ constructor(_value?: RecursivePartial<IntentSearchResult.AsObject>);
4317
+ get name(): string | undefined;
4318
+ set name(value: string | undefined);
4319
+ get displayName(): string | undefined;
4320
+ set displayName(value: string | undefined);
4321
+ get domainName(): string | undefined;
4322
+ set domainName(value: string | undefined);
4323
+ get language(): string | undefined;
4324
+ set language(value: string | undefined);
4325
+ /**
4326
+ * Serialize message to binary data
4327
+ * @param instance message instance
4328
+ */
4329
+ serializeBinary(): any;
4330
+ /**
4331
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4332
+ */
4333
+ toObject(): IntentSearchResult.AsObject;
4334
+ /**
4335
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4336
+ */
4337
+ toJSON(): IntentSearchResult.AsObject;
4338
+ /**
4339
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4340
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4341
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4342
+ */
4343
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentSearchResult.AsProtobufJSON;
4344
+ }
4345
+ module IntentSearchResult {
4346
+ /**
4347
+ * Standard JavaScript object representation for IntentSearchResult
4348
+ */
4349
+ interface AsObject {
4350
+ name?: string;
4351
+ displayName?: string;
4352
+ domainName?: string;
4353
+ language?: string;
4354
+ }
4355
+ /**
4356
+ * Protobuf JSON representation for IntentSearchResult
4357
+ */
4358
+ interface AsProtobufJSON {
4359
+ name?: string;
4360
+ displayName?: string;
4361
+ domainName?: string;
4362
+ language?: string;
4363
+ }
4364
+ }
4365
+ }
4366
+ /**
4367
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentContextIn
4368
+ */
4369
+ export declare class FullTextSearchResponseIntentContextIn implements GrpcMessage {
4370
+ static id: string;
4371
+ /**
4372
+ * Deserialize binary data to message
4373
+ * @param instance message instance
4374
+ */
4375
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentContextIn;
4376
+ /**
4377
+ * Check all the properties and set default protobuf values if necessary
4378
+ * @param _instance message instance
4379
+ */
4380
+ static refineValues(_instance: FullTextSearchResponseIntentContextIn): void;
4381
+ /**
4382
+ * Deserializes / reads binary message into message instance using provided binary reader
4383
+ * @param _instance message instance
4384
+ * @param _reader binary reader instance
4385
+ */
4386
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentContextIn, _reader: BinaryReader): void;
4387
+ /**
4388
+ * Serializes a message to binary format using provided binary reader
4389
+ * @param _instance message instance
4390
+ * @param _writer binary writer instance
4391
+ */
4392
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentContextIn, _writer: BinaryWriter): void;
4393
+ private _parent?;
4394
+ private _languageCode?;
4395
+ private _intentContextInResults?;
4396
+ private _term?;
4397
+ private _elasticQuery?;
4398
+ private _time?;
4399
+ private _nextPageToken?;
4400
+ /**
4401
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4402
+ * @param _value initial values object or instance of FullTextSearchResponseIntentContextIn to deeply clone from
4403
+ */
4404
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentContextIn.AsObject>);
4405
+ get parent(): string | undefined;
4406
+ set parent(value: string | undefined);
4407
+ get languageCode(): string | undefined;
4408
+ set languageCode(value: string | undefined);
4409
+ get intentContextInResults(): FullTextSearchResponseIntentContextIn.IntentContextInSearchResult[] | undefined;
4410
+ set intentContextInResults(value: FullTextSearchResponseIntentContextIn.IntentContextInSearchResult[] | undefined);
4411
+ get term(): string | undefined;
4412
+ set term(value: string | undefined);
4413
+ get elasticQuery(): string | undefined;
4414
+ set elasticQuery(value: string | undefined);
4415
+ get time(): number | undefined;
4416
+ set time(value: number | undefined);
4417
+ get nextPageToken(): string | undefined;
4418
+ set nextPageToken(value: string | undefined);
4419
+ /**
4420
+ * Serialize message to binary data
4421
+ * @param instance message instance
4422
+ */
4423
+ serializeBinary(): any;
4424
+ /**
4425
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4426
+ */
4427
+ toObject(): FullTextSearchResponseIntentContextIn.AsObject;
4428
+ /**
4429
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4430
+ */
4431
+ toJSON(): FullTextSearchResponseIntentContextIn.AsObject;
4432
+ /**
4433
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4434
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4435
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4436
+ */
4437
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentContextIn.AsProtobufJSON;
4438
+ }
4439
+ export declare module FullTextSearchResponseIntentContextIn {
4440
+ /**
4441
+ * Standard JavaScript object representation for FullTextSearchResponseIntentContextIn
4442
+ */
4443
+ interface AsObject {
4444
+ parent?: string;
4445
+ languageCode?: string;
4446
+ intentContextInResults?: FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.AsObject[];
4447
+ term?: string;
4448
+ elasticQuery?: string;
4449
+ time?: number;
4450
+ nextPageToken?: string;
4451
+ }
4452
+ /**
4453
+ * Protobuf JSON representation for FullTextSearchResponseIntentContextIn
4454
+ */
4455
+ interface AsProtobufJSON {
4456
+ parent?: string;
4457
+ languageCode?: string;
4458
+ intentContextInResults?: FullTextSearchResponseIntentContextIn.IntentContextInSearchResult.AsProtobufJSON[] | null;
4459
+ term?: string;
4460
+ elasticQuery?: string;
4461
+ time?: number;
4462
+ nextPageToken?: string;
4463
+ }
4464
+ /**
4465
+ * Message implementation for ondewo.nlu.IntentContextInSearchResult
4466
+ */
4467
+ class IntentContextInSearchResult implements GrpcMessage {
4468
+ static id: string;
4469
+ /**
4470
+ * Deserialize binary data to message
4471
+ * @param instance message instance
4472
+ */
4473
+ static deserializeBinary(bytes: ByteSource): IntentContextInSearchResult;
4474
+ /**
4475
+ * Check all the properties and set default protobuf values if necessary
4476
+ * @param _instance message instance
4477
+ */
4478
+ static refineValues(_instance: IntentContextInSearchResult): void;
4479
+ /**
4480
+ * Deserializes / reads binary message into message instance using provided binary reader
4481
+ * @param _instance message instance
4482
+ * @param _reader binary reader instance
4483
+ */
4484
+ static deserializeBinaryFromReader(_instance: IntentContextInSearchResult, _reader: BinaryReader): void;
4485
+ /**
4486
+ * Serializes a message to binary format using provided binary reader
4487
+ * @param _instance message instance
4488
+ * @param _writer binary writer instance
4489
+ */
4490
+ static serializeBinaryToWriter(_instance: IntentContextInSearchResult, _writer: BinaryWriter): void;
4491
+ private _name?;
4492
+ private _intentName?;
4493
+ private _language?;
4494
+ /**
4495
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4496
+ * @param _value initial values object or instance of IntentContextInSearchResult to deeply clone from
4497
+ */
4498
+ constructor(_value?: RecursivePartial<IntentContextInSearchResult.AsObject>);
4499
+ get name(): string | undefined;
4500
+ set name(value: string | undefined);
4501
+ get intentName(): string | undefined;
4502
+ set intentName(value: string | undefined);
4503
+ get language(): string | undefined;
4504
+ set language(value: string | undefined);
4505
+ /**
4506
+ * Serialize message to binary data
4507
+ * @param instance message instance
4508
+ */
4509
+ serializeBinary(): any;
4510
+ /**
4511
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4512
+ */
4513
+ toObject(): IntentContextInSearchResult.AsObject;
4514
+ /**
4515
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4516
+ */
4517
+ toJSON(): IntentContextInSearchResult.AsObject;
4518
+ /**
4519
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4520
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4521
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4522
+ */
4523
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentContextInSearchResult.AsProtobufJSON;
4524
+ }
4525
+ module IntentContextInSearchResult {
4526
+ /**
4527
+ * Standard JavaScript object representation for IntentContextInSearchResult
4528
+ */
4529
+ interface AsObject {
4530
+ name?: string;
4531
+ intentName?: string;
4532
+ language?: string;
4533
+ }
4534
+ /**
4535
+ * Protobuf JSON representation for IntentContextInSearchResult
4536
+ */
4537
+ interface AsProtobufJSON {
4538
+ name?: string;
4539
+ intentName?: string;
4540
+ language?: string;
4541
+ }
4542
+ }
4543
+ }
4544
+ /**
4545
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentContextOut
4546
+ */
4547
+ export declare class FullTextSearchResponseIntentContextOut implements GrpcMessage {
4548
+ static id: string;
4549
+ /**
4550
+ * Deserialize binary data to message
4551
+ * @param instance message instance
4552
+ */
4553
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentContextOut;
4554
+ /**
4555
+ * Check all the properties and set default protobuf values if necessary
4556
+ * @param _instance message instance
4557
+ */
4558
+ static refineValues(_instance: FullTextSearchResponseIntentContextOut): void;
4559
+ /**
4560
+ * Deserializes / reads binary message into message instance using provided binary reader
4561
+ * @param _instance message instance
4562
+ * @param _reader binary reader instance
4563
+ */
4564
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentContextOut, _reader: BinaryReader): void;
4565
+ /**
4566
+ * Serializes a message to binary format using provided binary reader
4567
+ * @param _instance message instance
4568
+ * @param _writer binary writer instance
4569
+ */
4570
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentContextOut, _writer: BinaryWriter): void;
4571
+ private _parent?;
4572
+ private _languageCode?;
4573
+ private _intentContextOutResults?;
4574
+ private _term?;
4575
+ private _elasticQuery?;
4576
+ private _time?;
4577
+ private _nextPageToken?;
4578
+ /**
4579
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4580
+ * @param _value initial values object or instance of FullTextSearchResponseIntentContextOut to deeply clone from
4581
+ */
4582
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentContextOut.AsObject>);
4583
+ get parent(): string | undefined;
4584
+ set parent(value: string | undefined);
4585
+ get languageCode(): string | undefined;
4586
+ set languageCode(value: string | undefined);
4587
+ get intentContextOutResults(): FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult[] | undefined;
4588
+ set intentContextOutResults(value: FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult[] | undefined);
4589
+ get term(): string | undefined;
4590
+ set term(value: string | undefined);
4591
+ get elasticQuery(): string | undefined;
4592
+ set elasticQuery(value: string | undefined);
4593
+ get time(): number | undefined;
4594
+ set time(value: number | undefined);
4595
+ get nextPageToken(): string | undefined;
4596
+ set nextPageToken(value: string | undefined);
4597
+ /**
4598
+ * Serialize message to binary data
4599
+ * @param instance message instance
4600
+ */
4601
+ serializeBinary(): any;
4602
+ /**
4603
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4604
+ */
4605
+ toObject(): FullTextSearchResponseIntentContextOut.AsObject;
4606
+ /**
4607
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4608
+ */
4609
+ toJSON(): FullTextSearchResponseIntentContextOut.AsObject;
4610
+ /**
4611
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4612
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4613
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4614
+ */
4615
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentContextOut.AsProtobufJSON;
4616
+ }
4617
+ export declare module FullTextSearchResponseIntentContextOut {
4618
+ /**
4619
+ * Standard JavaScript object representation for FullTextSearchResponseIntentContextOut
4620
+ */
4621
+ interface AsObject {
4622
+ parent?: string;
4623
+ languageCode?: string;
4624
+ intentContextOutResults?: FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.AsObject[];
4625
+ term?: string;
4626
+ elasticQuery?: string;
4627
+ time?: number;
4628
+ nextPageToken?: string;
4629
+ }
4630
+ /**
4631
+ * Protobuf JSON representation for FullTextSearchResponseIntentContextOut
4632
+ */
4633
+ interface AsProtobufJSON {
4634
+ parent?: string;
4635
+ languageCode?: string;
4636
+ intentContextOutResults?: FullTextSearchResponseIntentContextOut.IntentContextOutSearchResult.AsProtobufJSON[] | null;
4637
+ term?: string;
4638
+ elasticQuery?: string;
4639
+ time?: number;
4640
+ nextPageToken?: string;
4641
+ }
4642
+ /**
4643
+ * Message implementation for ondewo.nlu.IntentContextOutSearchResult
4644
+ */
4645
+ class IntentContextOutSearchResult implements GrpcMessage {
4646
+ static id: string;
4647
+ /**
4648
+ * Deserialize binary data to message
4649
+ * @param instance message instance
4650
+ */
4651
+ static deserializeBinary(bytes: ByteSource): IntentContextOutSearchResult;
4652
+ /**
4653
+ * Check all the properties and set default protobuf values if necessary
4654
+ * @param _instance message instance
4655
+ */
4656
+ static refineValues(_instance: IntentContextOutSearchResult): void;
4657
+ /**
4658
+ * Deserializes / reads binary message into message instance using provided binary reader
4659
+ * @param _instance message instance
4660
+ * @param _reader binary reader instance
4661
+ */
4662
+ static deserializeBinaryFromReader(_instance: IntentContextOutSearchResult, _reader: BinaryReader): void;
4663
+ /**
4664
+ * Serializes a message to binary format using provided binary reader
4665
+ * @param _instance message instance
4666
+ * @param _writer binary writer instance
4667
+ */
4668
+ static serializeBinaryToWriter(_instance: IntentContextOutSearchResult, _writer: BinaryWriter): void;
4669
+ private _name?;
4670
+ private _intentName?;
4671
+ private _language?;
4672
+ /**
4673
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4674
+ * @param _value initial values object or instance of IntentContextOutSearchResult to deeply clone from
4675
+ */
4676
+ constructor(_value?: RecursivePartial<IntentContextOutSearchResult.AsObject>);
4677
+ get name(): string | undefined;
4678
+ set name(value: string | undefined);
4679
+ get intentName(): string | undefined;
4680
+ set intentName(value: string | undefined);
4681
+ get language(): string | undefined;
4682
+ set language(value: string | undefined);
4683
+ /**
4684
+ * Serialize message to binary data
4685
+ * @param instance message instance
4686
+ */
4687
+ serializeBinary(): any;
4688
+ /**
4689
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4690
+ */
4691
+ toObject(): IntentContextOutSearchResult.AsObject;
4692
+ /**
4693
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4694
+ */
4695
+ toJSON(): IntentContextOutSearchResult.AsObject;
4696
+ /**
4697
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4698
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4699
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4700
+ */
4701
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentContextOutSearchResult.AsProtobufJSON;
4702
+ }
4703
+ module IntentContextOutSearchResult {
4704
+ /**
4705
+ * Standard JavaScript object representation for IntentContextOutSearchResult
4706
+ */
4707
+ interface AsObject {
4708
+ name?: string;
4709
+ intentName?: string;
4710
+ language?: string;
4711
+ }
4712
+ /**
4713
+ * Protobuf JSON representation for IntentContextOutSearchResult
4714
+ */
4715
+ interface AsProtobufJSON {
4716
+ name?: string;
4717
+ intentName?: string;
4718
+ language?: string;
4719
+ }
4720
+ }
4721
+ }
4722
+ /**
4723
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentUsersays
4724
+ */
4725
+ export declare class FullTextSearchResponseIntentUsersays implements GrpcMessage {
4726
+ static id: string;
4727
+ /**
4728
+ * Deserialize binary data to message
4729
+ * @param instance message instance
4730
+ */
4731
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentUsersays;
4732
+ /**
4733
+ * Check all the properties and set default protobuf values if necessary
4734
+ * @param _instance message instance
4735
+ */
4736
+ static refineValues(_instance: FullTextSearchResponseIntentUsersays): void;
4737
+ /**
4738
+ * Deserializes / reads binary message into message instance using provided binary reader
4739
+ * @param _instance message instance
4740
+ * @param _reader binary reader instance
4741
+ */
4742
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentUsersays, _reader: BinaryReader): void;
4743
+ /**
4744
+ * Serializes a message to binary format using provided binary reader
4745
+ * @param _instance message instance
4746
+ * @param _writer binary writer instance
4747
+ */
4748
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentUsersays, _writer: BinaryWriter): void;
4749
+ private _parent?;
4750
+ private _languageCode?;
4751
+ private _intentUsersaysResults?;
4752
+ private _term?;
4753
+ private _elasticQuery?;
4754
+ private _time?;
4755
+ private _nextPageToken?;
4756
+ /**
4757
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4758
+ * @param _value initial values object or instance of FullTextSearchResponseIntentUsersays to deeply clone from
4759
+ */
4760
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentUsersays.AsObject>);
4761
+ get parent(): string | undefined;
4762
+ set parent(value: string | undefined);
4763
+ get languageCode(): string | undefined;
4764
+ set languageCode(value: string | undefined);
4765
+ get intentUsersaysResults(): FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult[] | undefined;
4766
+ set intentUsersaysResults(value: FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult[] | undefined);
4767
+ get term(): string | undefined;
4768
+ set term(value: string | undefined);
4769
+ get elasticQuery(): string | undefined;
4770
+ set elasticQuery(value: string | undefined);
4771
+ get time(): number | undefined;
4772
+ set time(value: number | undefined);
4773
+ get nextPageToken(): string | undefined;
4774
+ set nextPageToken(value: string | undefined);
4775
+ /**
4776
+ * Serialize message to binary data
4777
+ * @param instance message instance
4778
+ */
4779
+ serializeBinary(): any;
4780
+ /**
4781
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4782
+ */
4783
+ toObject(): FullTextSearchResponseIntentUsersays.AsObject;
4784
+ /**
4785
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4786
+ */
4787
+ toJSON(): FullTextSearchResponseIntentUsersays.AsObject;
4788
+ /**
4789
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4790
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4791
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4792
+ */
4793
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentUsersays.AsProtobufJSON;
4794
+ }
4795
+ export declare module FullTextSearchResponseIntentUsersays {
4796
+ /**
4797
+ * Standard JavaScript object representation for FullTextSearchResponseIntentUsersays
4798
+ */
4799
+ interface AsObject {
4800
+ parent?: string;
4801
+ languageCode?: string;
4802
+ intentUsersaysResults?: FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.AsObject[];
4803
+ term?: string;
4804
+ elasticQuery?: string;
4805
+ time?: number;
4806
+ nextPageToken?: string;
4807
+ }
4808
+ /**
4809
+ * Protobuf JSON representation for FullTextSearchResponseIntentUsersays
4810
+ */
4811
+ interface AsProtobufJSON {
4812
+ parent?: string;
4813
+ languageCode?: string;
4814
+ intentUsersaysResults?: FullTextSearchResponseIntentUsersays.IntentUsersaysSearchResult.AsProtobufJSON[] | null;
4815
+ term?: string;
4816
+ elasticQuery?: string;
4817
+ time?: number;
4818
+ nextPageToken?: string;
4819
+ }
4820
+ /**
4821
+ * Message implementation for ondewo.nlu.IntentUsersaysSearchResult
4822
+ */
4823
+ class IntentUsersaysSearchResult implements GrpcMessage {
4824
+ static id: string;
4825
+ /**
4826
+ * Deserialize binary data to message
4827
+ * @param instance message instance
4828
+ */
4829
+ static deserializeBinary(bytes: ByteSource): IntentUsersaysSearchResult;
4830
+ /**
4831
+ * Check all the properties and set default protobuf values if necessary
4832
+ * @param _instance message instance
4833
+ */
4834
+ static refineValues(_instance: IntentUsersaysSearchResult): void;
4835
+ /**
4836
+ * Deserializes / reads binary message into message instance using provided binary reader
4837
+ * @param _instance message instance
4838
+ * @param _reader binary reader instance
4839
+ */
4840
+ static deserializeBinaryFromReader(_instance: IntentUsersaysSearchResult, _reader: BinaryReader): void;
4841
+ /**
4842
+ * Serializes a message to binary format using provided binary reader
4843
+ * @param _instance message instance
4844
+ * @param _writer binary writer instance
4845
+ */
4846
+ static serializeBinaryToWriter(_instance: IntentUsersaysSearchResult, _writer: BinaryWriter): void;
4847
+ private _name?;
4848
+ private _text?;
4849
+ private _textAsEntityTypes?;
4850
+ private _textAsEntityValues?;
4851
+ private _type?;
4852
+ private _intentName?;
4853
+ private _language?;
4854
+ /**
4855
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4856
+ * @param _value initial values object or instance of IntentUsersaysSearchResult to deeply clone from
4857
+ */
4858
+ constructor(_value?: RecursivePartial<IntentUsersaysSearchResult.AsObject>);
4859
+ get name(): string | undefined;
4860
+ set name(value: string | undefined);
4861
+ get text(): string | undefined;
4862
+ set text(value: string | undefined);
4863
+ get textAsEntityTypes(): string | undefined;
4864
+ set textAsEntityTypes(value: string | undefined);
4865
+ get textAsEntityValues(): string | undefined;
4866
+ set textAsEntityValues(value: string | undefined);
4867
+ get type(): string | undefined;
4868
+ set type(value: string | undefined);
4869
+ get intentName(): string | undefined;
4870
+ set intentName(value: string | undefined);
4871
+ get language(): string | undefined;
4872
+ set language(value: string | undefined);
4873
+ /**
4874
+ * Serialize message to binary data
4875
+ * @param instance message instance
4876
+ */
4877
+ serializeBinary(): any;
4878
+ /**
4879
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4880
+ */
4881
+ toObject(): IntentUsersaysSearchResult.AsObject;
4882
+ /**
4883
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4884
+ */
4885
+ toJSON(): IntentUsersaysSearchResult.AsObject;
4886
+ /**
4887
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4888
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4889
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4890
+ */
4891
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentUsersaysSearchResult.AsProtobufJSON;
4892
+ }
4893
+ module IntentUsersaysSearchResult {
4894
+ /**
4895
+ * Standard JavaScript object representation for IntentUsersaysSearchResult
4896
+ */
4897
+ interface AsObject {
4898
+ name?: string;
4899
+ text?: string;
4900
+ textAsEntityTypes?: string;
4901
+ textAsEntityValues?: string;
4902
+ type?: string;
4903
+ intentName?: string;
4904
+ language?: string;
4905
+ }
4906
+ /**
4907
+ * Protobuf JSON representation for IntentUsersaysSearchResult
4908
+ */
4909
+ interface AsProtobufJSON {
4910
+ name?: string;
4911
+ text?: string;
4912
+ textAsEntityTypes?: string;
4913
+ textAsEntityValues?: string;
4914
+ type?: string;
4915
+ intentName?: string;
4916
+ language?: string;
4917
+ }
4918
+ }
4919
+ }
4920
+ /**
4921
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentTags
4922
+ */
4923
+ export declare class FullTextSearchResponseIntentTags implements GrpcMessage {
4924
+ static id: string;
4925
+ /**
4926
+ * Deserialize binary data to message
4927
+ * @param instance message instance
4928
+ */
4929
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentTags;
4930
+ /**
4931
+ * Check all the properties and set default protobuf values if necessary
4932
+ * @param _instance message instance
4933
+ */
4934
+ static refineValues(_instance: FullTextSearchResponseIntentTags): void;
4935
+ /**
4936
+ * Deserializes / reads binary message into message instance using provided binary reader
4937
+ * @param _instance message instance
4938
+ * @param _reader binary reader instance
4939
+ */
4940
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentTags, _reader: BinaryReader): void;
4941
+ /**
4942
+ * Serializes a message to binary format using provided binary reader
4943
+ * @param _instance message instance
4944
+ * @param _writer binary writer instance
4945
+ */
4946
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentTags, _writer: BinaryWriter): void;
4947
+ private _parent?;
4948
+ private _languageCode?;
4949
+ private _intentTagsResults?;
4950
+ private _term?;
4951
+ private _elasticQuery?;
4952
+ private _time?;
4953
+ private _nextPageToken?;
4954
+ /**
4955
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
4956
+ * @param _value initial values object or instance of FullTextSearchResponseIntentTags to deeply clone from
4957
+ */
4958
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentTags.AsObject>);
4959
+ get parent(): string | undefined;
4960
+ set parent(value: string | undefined);
4961
+ get languageCode(): string | undefined;
4962
+ set languageCode(value: string | undefined);
4963
+ get intentTagsResults(): FullTextSearchResponseIntentTags.IntentTagsSearchResult[] | undefined;
4964
+ set intentTagsResults(value: FullTextSearchResponseIntentTags.IntentTagsSearchResult[] | undefined);
4965
+ get term(): string | undefined;
4966
+ set term(value: string | undefined);
4967
+ get elasticQuery(): string | undefined;
4968
+ set elasticQuery(value: string | undefined);
4969
+ get time(): number | undefined;
4970
+ set time(value: number | undefined);
4971
+ get nextPageToken(): string | undefined;
4972
+ set nextPageToken(value: string | undefined);
4973
+ /**
4974
+ * Serialize message to binary data
4975
+ * @param instance message instance
4976
+ */
4977
+ serializeBinary(): any;
4978
+ /**
4979
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
4980
+ */
4981
+ toObject(): FullTextSearchResponseIntentTags.AsObject;
4982
+ /**
4983
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
4984
+ */
4985
+ toJSON(): FullTextSearchResponseIntentTags.AsObject;
4986
+ /**
4987
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
4988
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
4989
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
4990
+ */
4991
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentTags.AsProtobufJSON;
4992
+ }
4993
+ export declare module FullTextSearchResponseIntentTags {
4994
+ /**
4995
+ * Standard JavaScript object representation for FullTextSearchResponseIntentTags
4996
+ */
4997
+ interface AsObject {
4998
+ parent?: string;
4999
+ languageCode?: string;
5000
+ intentTagsResults?: FullTextSearchResponseIntentTags.IntentTagsSearchResult.AsObject[];
5001
+ term?: string;
5002
+ elasticQuery?: string;
5003
+ time?: number;
5004
+ nextPageToken?: string;
5005
+ }
5006
+ /**
5007
+ * Protobuf JSON representation for FullTextSearchResponseIntentTags
5008
+ */
5009
+ interface AsProtobufJSON {
5010
+ parent?: string;
5011
+ languageCode?: string;
5012
+ intentTagsResults?: FullTextSearchResponseIntentTags.IntentTagsSearchResult.AsProtobufJSON[] | null;
5013
+ term?: string;
5014
+ elasticQuery?: string;
5015
+ time?: number;
5016
+ nextPageToken?: string;
5017
+ }
5018
+ /**
5019
+ * Message implementation for ondewo.nlu.IntentTagsSearchResult
5020
+ */
5021
+ class IntentTagsSearchResult implements GrpcMessage {
5022
+ static id: string;
5023
+ /**
5024
+ * Deserialize binary data to message
5025
+ * @param instance message instance
5026
+ */
5027
+ static deserializeBinary(bytes: ByteSource): IntentTagsSearchResult;
5028
+ /**
5029
+ * Check all the properties and set default protobuf values if necessary
5030
+ * @param _instance message instance
5031
+ */
5032
+ static refineValues(_instance: IntentTagsSearchResult): void;
5033
+ /**
5034
+ * Deserializes / reads binary message into message instance using provided binary reader
5035
+ * @param _instance message instance
5036
+ * @param _reader binary reader instance
5037
+ */
5038
+ static deserializeBinaryFromReader(_instance: IntentTagsSearchResult, _reader: BinaryReader): void;
5039
+ /**
5040
+ * Serializes a message to binary format using provided binary reader
5041
+ * @param _instance message instance
5042
+ * @param _writer binary writer instance
5043
+ */
5044
+ static serializeBinaryToWriter(_instance: IntentTagsSearchResult, _writer: BinaryWriter): void;
5045
+ private _name?;
5046
+ private _text?;
5047
+ private _intentName?;
5048
+ private _language?;
5049
+ /**
5050
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5051
+ * @param _value initial values object or instance of IntentTagsSearchResult to deeply clone from
5052
+ */
5053
+ constructor(_value?: RecursivePartial<IntentTagsSearchResult.AsObject>);
5054
+ get name(): string | undefined;
5055
+ set name(value: string | undefined);
5056
+ get text(): string | undefined;
5057
+ set text(value: string | undefined);
5058
+ get intentName(): string | undefined;
5059
+ set intentName(value: string | undefined);
5060
+ get language(): string | undefined;
5061
+ set language(value: string | undefined);
5062
+ /**
5063
+ * Serialize message to binary data
5064
+ * @param instance message instance
5065
+ */
5066
+ serializeBinary(): any;
5067
+ /**
5068
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5069
+ */
5070
+ toObject(): IntentTagsSearchResult.AsObject;
5071
+ /**
5072
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5073
+ */
5074
+ toJSON(): IntentTagsSearchResult.AsObject;
5075
+ /**
5076
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5077
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5078
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5079
+ */
5080
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentTagsSearchResult.AsProtobufJSON;
5081
+ }
5082
+ module IntentTagsSearchResult {
5083
+ /**
5084
+ * Standard JavaScript object representation for IntentTagsSearchResult
5085
+ */
5086
+ interface AsObject {
5087
+ name?: string;
5088
+ text?: string;
5089
+ intentName?: string;
5090
+ language?: string;
5091
+ }
5092
+ /**
5093
+ * Protobuf JSON representation for IntentTagsSearchResult
5094
+ */
5095
+ interface AsProtobufJSON {
5096
+ name?: string;
5097
+ text?: string;
5098
+ intentName?: string;
5099
+ language?: string;
5100
+ }
5101
+ }
5102
+ }
5103
+ /**
5104
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentResponse
5105
+ */
5106
+ export declare class FullTextSearchResponseIntentResponse implements GrpcMessage {
5107
+ static id: string;
5108
+ /**
5109
+ * Deserialize binary data to message
5110
+ * @param instance message instance
5111
+ */
5112
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentResponse;
5113
+ /**
5114
+ * Check all the properties and set default protobuf values if necessary
5115
+ * @param _instance message instance
5116
+ */
5117
+ static refineValues(_instance: FullTextSearchResponseIntentResponse): void;
5118
+ /**
5119
+ * Deserializes / reads binary message into message instance using provided binary reader
5120
+ * @param _instance message instance
5121
+ * @param _reader binary reader instance
5122
+ */
5123
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentResponse, _reader: BinaryReader): void;
5124
+ /**
5125
+ * Serializes a message to binary format using provided binary reader
5126
+ * @param _instance message instance
5127
+ * @param _writer binary writer instance
5128
+ */
5129
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentResponse, _writer: BinaryWriter): void;
5130
+ private _parent?;
5131
+ private _languageCode?;
5132
+ private _intentResponseResults?;
5133
+ private _term?;
5134
+ private _elasticQuery?;
5135
+ private _time?;
5136
+ private _nextPageToken?;
5137
+ /**
5138
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5139
+ * @param _value initial values object or instance of FullTextSearchResponseIntentResponse to deeply clone from
5140
+ */
5141
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentResponse.AsObject>);
5142
+ get parent(): string | undefined;
5143
+ set parent(value: string | undefined);
5144
+ get languageCode(): string | undefined;
5145
+ set languageCode(value: string | undefined);
5146
+ get intentResponseResults(): FullTextSearchResponseIntentResponse.IntentResponseSearchResult[] | undefined;
5147
+ set intentResponseResults(value: FullTextSearchResponseIntentResponse.IntentResponseSearchResult[] | undefined);
5148
+ get term(): string | undefined;
5149
+ set term(value: string | undefined);
5150
+ get elasticQuery(): string | undefined;
5151
+ set elasticQuery(value: string | undefined);
5152
+ get time(): number | undefined;
5153
+ set time(value: number | undefined);
5154
+ get nextPageToken(): string | undefined;
5155
+ set nextPageToken(value: string | undefined);
5156
+ /**
5157
+ * Serialize message to binary data
5158
+ * @param instance message instance
5159
+ */
5160
+ serializeBinary(): any;
5161
+ /**
5162
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5163
+ */
5164
+ toObject(): FullTextSearchResponseIntentResponse.AsObject;
5165
+ /**
5166
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5167
+ */
5168
+ toJSON(): FullTextSearchResponseIntentResponse.AsObject;
5169
+ /**
5170
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5171
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5172
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5173
+ */
5174
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentResponse.AsProtobufJSON;
5175
+ }
5176
+ export declare module FullTextSearchResponseIntentResponse {
5177
+ /**
5178
+ * Standard JavaScript object representation for FullTextSearchResponseIntentResponse
5179
+ */
5180
+ interface AsObject {
5181
+ parent?: string;
5182
+ languageCode?: string;
5183
+ intentResponseResults?: FullTextSearchResponseIntentResponse.IntentResponseSearchResult.AsObject[];
5184
+ term?: string;
5185
+ elasticQuery?: string;
5186
+ time?: number;
5187
+ nextPageToken?: string;
5188
+ }
5189
+ /**
5190
+ * Protobuf JSON representation for FullTextSearchResponseIntentResponse
5191
+ */
5192
+ interface AsProtobufJSON {
5193
+ parent?: string;
5194
+ languageCode?: string;
5195
+ intentResponseResults?: FullTextSearchResponseIntentResponse.IntentResponseSearchResult.AsProtobufJSON[] | null;
5196
+ term?: string;
5197
+ elasticQuery?: string;
5198
+ time?: number;
5199
+ nextPageToken?: string;
5200
+ }
5201
+ /**
5202
+ * Message implementation for ondewo.nlu.IntentResponseSearchResult
5203
+ */
5204
+ class IntentResponseSearchResult implements GrpcMessage {
5205
+ static id: string;
5206
+ /**
5207
+ * Deserialize binary data to message
5208
+ * @param instance message instance
5209
+ */
5210
+ static deserializeBinary(bytes: ByteSource): IntentResponseSearchResult;
5211
+ /**
5212
+ * Check all the properties and set default protobuf values if necessary
5213
+ * @param _instance message instance
5214
+ */
5215
+ static refineValues(_instance: IntentResponseSearchResult): void;
5216
+ /**
5217
+ * Deserializes / reads binary message into message instance using provided binary reader
5218
+ * @param _instance message instance
5219
+ * @param _reader binary reader instance
5220
+ */
5221
+ static deserializeBinaryFromReader(_instance: IntentResponseSearchResult, _reader: BinaryReader): void;
5222
+ /**
5223
+ * Serializes a message to binary format using provided binary reader
5224
+ * @param _instance message instance
5225
+ * @param _writer binary writer instance
5226
+ */
5227
+ static serializeBinaryToWriter(_instance: IntentResponseSearchResult, _writer: BinaryWriter): void;
5228
+ private _text?;
5229
+ private _platform?;
5230
+ private _responseType?;
5231
+ private _intentName?;
5232
+ private _language?;
5233
+ /**
5234
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5235
+ * @param _value initial values object or instance of IntentResponseSearchResult to deeply clone from
5236
+ */
5237
+ constructor(_value?: RecursivePartial<IntentResponseSearchResult.AsObject>);
5238
+ get text(): string | undefined;
5239
+ set text(value: string | undefined);
5240
+ get platform(): string | undefined;
5241
+ set platform(value: string | undefined);
5242
+ get responseType(): string | undefined;
5243
+ set responseType(value: string | undefined);
5244
+ get intentName(): string | undefined;
5245
+ set intentName(value: string | undefined);
5246
+ get language(): string | undefined;
5247
+ set language(value: string | undefined);
5248
+ /**
5249
+ * Serialize message to binary data
5250
+ * @param instance message instance
5251
+ */
5252
+ serializeBinary(): any;
5253
+ /**
5254
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5255
+ */
5256
+ toObject(): IntentResponseSearchResult.AsObject;
5257
+ /**
5258
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5259
+ */
5260
+ toJSON(): IntentResponseSearchResult.AsObject;
5261
+ /**
5262
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5263
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5264
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5265
+ */
5266
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentResponseSearchResult.AsProtobufJSON;
5267
+ }
5268
+ module IntentResponseSearchResult {
5269
+ /**
5270
+ * Standard JavaScript object representation for IntentResponseSearchResult
5271
+ */
5272
+ interface AsObject {
5273
+ text?: string;
5274
+ platform?: string;
5275
+ responseType?: string;
5276
+ intentName?: string;
5277
+ language?: string;
5278
+ }
5279
+ /**
5280
+ * Protobuf JSON representation for IntentResponseSearchResult
5281
+ */
5282
+ interface AsProtobufJSON {
5283
+ text?: string;
5284
+ platform?: string;
5285
+ responseType?: string;
5286
+ intentName?: string;
5287
+ language?: string;
5288
+ }
5289
+ }
5290
+ }
5291
+ /**
5292
+ * Message implementation for ondewo.nlu.FullTextSearchResponseIntentParameters
5293
+ */
5294
+ export declare class FullTextSearchResponseIntentParameters implements GrpcMessage {
5295
+ static id: string;
5296
+ /**
5297
+ * Deserialize binary data to message
5298
+ * @param instance message instance
5299
+ */
5300
+ static deserializeBinary(bytes: ByteSource): FullTextSearchResponseIntentParameters;
5301
+ /**
5302
+ * Check all the properties and set default protobuf values if necessary
5303
+ * @param _instance message instance
5304
+ */
5305
+ static refineValues(_instance: FullTextSearchResponseIntentParameters): void;
5306
+ /**
5307
+ * Deserializes / reads binary message into message instance using provided binary reader
5308
+ * @param _instance message instance
5309
+ * @param _reader binary reader instance
5310
+ */
5311
+ static deserializeBinaryFromReader(_instance: FullTextSearchResponseIntentParameters, _reader: BinaryReader): void;
5312
+ /**
5313
+ * Serializes a message to binary format using provided binary reader
5314
+ * @param _instance message instance
5315
+ * @param _writer binary writer instance
5316
+ */
5317
+ static serializeBinaryToWriter(_instance: FullTextSearchResponseIntentParameters, _writer: BinaryWriter): void;
5318
+ private _parent?;
5319
+ private _languageCode?;
5320
+ private _intentParametersResults?;
5321
+ private _term?;
5322
+ private _elasticQuery?;
5323
+ private _time?;
5324
+ private _nextPageToken?;
5325
+ /**
5326
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5327
+ * @param _value initial values object or instance of FullTextSearchResponseIntentParameters to deeply clone from
5328
+ */
5329
+ constructor(_value?: RecursivePartial<FullTextSearchResponseIntentParameters.AsObject>);
5330
+ get parent(): string | undefined;
5331
+ set parent(value: string | undefined);
5332
+ get languageCode(): string | undefined;
5333
+ set languageCode(value: string | undefined);
5334
+ get intentParametersResults(): FullTextSearchResponseIntentParameters.IntentParametersSearchResult[] | undefined;
5335
+ set intentParametersResults(value: FullTextSearchResponseIntentParameters.IntentParametersSearchResult[] | undefined);
5336
+ get term(): string | undefined;
5337
+ set term(value: string | undefined);
5338
+ get elasticQuery(): string | undefined;
5339
+ set elasticQuery(value: string | undefined);
5340
+ get time(): number | undefined;
5341
+ set time(value: number | undefined);
5342
+ get nextPageToken(): string | undefined;
5343
+ set nextPageToken(value: string | undefined);
5344
+ /**
5345
+ * Serialize message to binary data
5346
+ * @param instance message instance
5347
+ */
5348
+ serializeBinary(): any;
5349
+ /**
5350
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5351
+ */
5352
+ toObject(): FullTextSearchResponseIntentParameters.AsObject;
5353
+ /**
5354
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5355
+ */
5356
+ toJSON(): FullTextSearchResponseIntentParameters.AsObject;
5357
+ /**
5358
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5359
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5360
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5361
+ */
5362
+ toProtobufJSON(options?: ToProtobufJSONOptions): FullTextSearchResponseIntentParameters.AsProtobufJSON;
5363
+ }
5364
+ export declare module FullTextSearchResponseIntentParameters {
5365
+ /**
5366
+ * Standard JavaScript object representation for FullTextSearchResponseIntentParameters
5367
+ */
5368
+ interface AsObject {
5369
+ parent?: string;
5370
+ languageCode?: string;
5371
+ intentParametersResults?: FullTextSearchResponseIntentParameters.IntentParametersSearchResult.AsObject[];
5372
+ term?: string;
5373
+ elasticQuery?: string;
5374
+ time?: number;
5375
+ nextPageToken?: string;
5376
+ }
5377
+ /**
5378
+ * Protobuf JSON representation for FullTextSearchResponseIntentParameters
5379
+ */
5380
+ interface AsProtobufJSON {
5381
+ parent?: string;
5382
+ languageCode?: string;
5383
+ intentParametersResults?: FullTextSearchResponseIntentParameters.IntentParametersSearchResult.AsProtobufJSON[] | null;
5384
+ term?: string;
5385
+ elasticQuery?: string;
5386
+ time?: number;
5387
+ nextPageToken?: string;
5388
+ }
5389
+ /**
5390
+ * Message implementation for ondewo.nlu.IntentParametersSearchResult
5391
+ */
5392
+ class IntentParametersSearchResult implements GrpcMessage {
5393
+ static id: string;
5394
+ /**
5395
+ * Deserialize binary data to message
5396
+ * @param instance message instance
5397
+ */
5398
+ static deserializeBinary(bytes: ByteSource): IntentParametersSearchResult;
5399
+ /**
5400
+ * Check all the properties and set default protobuf values if necessary
5401
+ * @param _instance message instance
5402
+ */
5403
+ static refineValues(_instance: IntentParametersSearchResult): void;
5404
+ /**
5405
+ * Deserializes / reads binary message into message instance using provided binary reader
5406
+ * @param _instance message instance
5407
+ * @param _reader binary reader instance
5408
+ */
5409
+ static deserializeBinaryFromReader(_instance: IntentParametersSearchResult, _reader: BinaryReader): void;
5410
+ /**
5411
+ * Serializes a message to binary format using provided binary reader
5412
+ * @param _instance message instance
5413
+ * @param _writer binary writer instance
5414
+ */
5415
+ static serializeBinaryToWriter(_instance: IntentParametersSearchResult, _writer: BinaryWriter): void;
5416
+ private _parameterName?;
5417
+ private _parameterDisplayName?;
5418
+ private _intentName?;
5419
+ private _language?;
5420
+ /**
5421
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5422
+ * @param _value initial values object or instance of IntentParametersSearchResult to deeply clone from
5423
+ */
5424
+ constructor(_value?: RecursivePartial<IntentParametersSearchResult.AsObject>);
5425
+ get parameterName(): string | undefined;
5426
+ set parameterName(value: string | undefined);
5427
+ get parameterDisplayName(): string | undefined;
5428
+ set parameterDisplayName(value: string | undefined);
5429
+ get intentName(): string | undefined;
5430
+ set intentName(value: string | undefined);
5431
+ get language(): string | undefined;
5432
+ set language(value: string | undefined);
5433
+ /**
5434
+ * Serialize message to binary data
5435
+ * @param instance message instance
5436
+ */
5437
+ serializeBinary(): any;
5438
+ /**
5439
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5440
+ */
5441
+ toObject(): IntentParametersSearchResult.AsObject;
5442
+ /**
5443
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5444
+ */
5445
+ toJSON(): IntentParametersSearchResult.AsObject;
5446
+ /**
5447
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5448
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5449
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5450
+ */
5451
+ toProtobufJSON(options?: ToProtobufJSONOptions): IntentParametersSearchResult.AsProtobufJSON;
5452
+ }
5453
+ module IntentParametersSearchResult {
5454
+ /**
5455
+ * Standard JavaScript object representation for IntentParametersSearchResult
5456
+ */
5457
+ interface AsObject {
5458
+ parameterName?: string;
5459
+ parameterDisplayName?: string;
5460
+ intentName?: string;
5461
+ language?: string;
5462
+ }
5463
+ /**
5464
+ * Protobuf JSON representation for IntentParametersSearchResult
5465
+ */
5466
+ interface AsProtobufJSON {
5467
+ parameterName?: string;
5468
+ parameterDisplayName?: string;
5469
+ intentName?: string;
5470
+ language?: string;
5471
+ }
5472
+ }
5473
+ }
5474
+ /**
5475
+ * Message implementation for ondewo.nlu.ReindexAgentRequest
5476
+ */
5477
+ export declare class ReindexAgentRequest implements GrpcMessage {
5478
+ static id: string;
5479
+ /**
5480
+ * Deserialize binary data to message
5481
+ * @param instance message instance
5482
+ */
5483
+ static deserializeBinary(bytes: ByteSource): ReindexAgentRequest;
5484
+ /**
5485
+ * Check all the properties and set default protobuf values if necessary
5486
+ * @param _instance message instance
5487
+ */
5488
+ static refineValues(_instance: ReindexAgentRequest): void;
5489
+ /**
5490
+ * Deserializes / reads binary message into message instance using provided binary reader
5491
+ * @param _instance message instance
5492
+ * @param _reader binary reader instance
5493
+ */
5494
+ static deserializeBinaryFromReader(_instance: ReindexAgentRequest, _reader: BinaryReader): void;
5495
+ /**
5496
+ * Serializes a message to binary format using provided binary reader
5497
+ * @param _instance message instance
5498
+ * @param _writer binary writer instance
5499
+ */
5500
+ static serializeBinaryToWriter(_instance: ReindexAgentRequest, _writer: BinaryWriter): void;
5501
+ private _parent?;
5502
+ private _branchName?;
5503
+ private _indexTypes?;
5504
+ /**
5505
+ * Message constructor. Initializes the properties and applies default Protobuf values if necessary
5506
+ * @param _value initial values object or instance of ReindexAgentRequest to deeply clone from
5507
+ */
5508
+ constructor(_value?: RecursivePartial<ReindexAgentRequest.AsObject>);
5509
+ get parent(): string | undefined;
5510
+ set parent(value: string | undefined);
5511
+ get branchName(): string | undefined;
5512
+ set branchName(value: string | undefined);
5513
+ get indexTypes(): FullTextSearchRequest.QueryType[] | undefined;
5514
+ set indexTypes(value: FullTextSearchRequest.QueryType[] | undefined);
5515
+ /**
5516
+ * Serialize message to binary data
5517
+ * @param instance message instance
5518
+ */
5519
+ serializeBinary(): any;
5520
+ /**
5521
+ * Cast message to standard JavaScript object (all non-primitive values are deeply cloned)
5522
+ */
5523
+ toObject(): ReindexAgentRequest.AsObject;
5524
+ /**
5525
+ * Convenience method to support JSON.stringify(message), replicates the structure of toObject()
5526
+ */
5527
+ toJSON(): ReindexAgentRequest.AsObject;
5528
+ /**
5529
+ * Cast message to JSON using protobuf JSON notation: https://developers.google.com/protocol-buffers/docs/proto3#json
5530
+ * Attention: output differs from toObject() e.g. enums are represented as names and not as numbers, Timestamp is an ISO Date string format etc.
5531
+ * If the message itself or some of descendant messages is google.protobuf.Any, you MUST provide a message pool as options. If not, the messagePool is not required
5532
+ */
5533
+ toProtobufJSON(options?: ToProtobufJSONOptions): ReindexAgentRequest.AsProtobufJSON;
5534
+ }
5535
+ export declare module ReindexAgentRequest {
5536
+ /**
5537
+ * Standard JavaScript object representation for ReindexAgentRequest
5538
+ */
5539
+ interface AsObject {
5540
+ parent?: string;
5541
+ branchName?: string;
5542
+ indexTypes?: FullTextSearchRequest.QueryType[];
5543
+ }
5544
+ /**
5545
+ * Protobuf JSON representation for ReindexAgentRequest
5546
+ */
5547
+ interface AsProtobufJSON {
5548
+ parent?: string;
5549
+ branchName?: string;
5550
+ indexTypes?: string[];
5551
+ }
5552
+ }