@google-apps/chat 0.15.0 → 0.17.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.
- package/README.md +6 -2
- package/build/protos/google/chat/v1/annotation.proto +80 -5
- package/build/protos/google/chat/v1/chat_service.proto +81 -0
- package/build/protos/google/chat/v1/message.proto +3 -1
- package/build/protos/google/chat/v1/reaction.proto +148 -3
- package/build/protos/protos.d.ts +1905 -354
- package/build/protos/protos.js +5220 -644
- package/build/protos/protos.json +546 -50
- package/build/src/v1/chat_service_client.d.ts +916 -636
- package/build/src/v1/chat_service_client.js +591 -365
- package/build/src/v1/chat_service_client.js.map +1 -1
- package/build/src/v1/chat_service_client_config.json +20 -0
- package/build/src/v1/gapic_metadata.json +44 -0
- package/package.json +4 -4
- package/CHANGELOG.md +0 -119
package/build/protos/protos.d.ts
CHANGED
|
@@ -800,7 +800,7 @@ export namespace google {
|
|
|
800
800
|
interface IBytesValue {
|
|
801
801
|
|
|
802
802
|
/** BytesValue value */
|
|
803
|
-
value?: (Uint8Array|string|null);
|
|
803
|
+
value?: (Uint8Array|Buffer|string|null);
|
|
804
804
|
}
|
|
805
805
|
|
|
806
806
|
/** Represents a BytesValue. */
|
|
@@ -813,7 +813,7 @@ export namespace google {
|
|
|
813
813
|
constructor(properties?: google.protobuf.IBytesValue);
|
|
814
814
|
|
|
815
815
|
/** BytesValue value. */
|
|
816
|
-
public value: (Uint8Array|string);
|
|
816
|
+
public value: (Uint8Array|Buffer|string);
|
|
817
817
|
|
|
818
818
|
/**
|
|
819
819
|
* Creates a new BytesValue instance using the specified properties.
|
|
@@ -993,6 +993,7 @@ export namespace google {
|
|
|
993
993
|
/** Edition enum. */
|
|
994
994
|
enum Edition {
|
|
995
995
|
EDITION_UNKNOWN = 0,
|
|
996
|
+
EDITION_LEGACY = 900,
|
|
996
997
|
EDITION_PROTO2 = 998,
|
|
997
998
|
EDITION_PROTO3 = 999,
|
|
998
999
|
EDITION_2023 = 1000,
|
|
@@ -1023,6 +1024,9 @@ export namespace google {
|
|
|
1023
1024
|
/** FileDescriptorProto weakDependency */
|
|
1024
1025
|
weakDependency?: (number[]|null);
|
|
1025
1026
|
|
|
1027
|
+
/** FileDescriptorProto optionDependency */
|
|
1028
|
+
optionDependency?: (string[]|null);
|
|
1029
|
+
|
|
1026
1030
|
/** FileDescriptorProto messageType */
|
|
1027
1031
|
messageType?: (google.protobuf.IDescriptorProto[]|null);
|
|
1028
1032
|
|
|
@@ -1072,6 +1076,9 @@ export namespace google {
|
|
|
1072
1076
|
/** FileDescriptorProto weakDependency. */
|
|
1073
1077
|
public weakDependency: number[];
|
|
1074
1078
|
|
|
1079
|
+
/** FileDescriptorProto optionDependency. */
|
|
1080
|
+
public optionDependency: string[];
|
|
1081
|
+
|
|
1075
1082
|
/** FileDescriptorProto messageType. */
|
|
1076
1083
|
public messageType: google.protobuf.IDescriptorProto[];
|
|
1077
1084
|
|
|
@@ -1206,6 +1213,9 @@ export namespace google {
|
|
|
1206
1213
|
|
|
1207
1214
|
/** DescriptorProto reservedName */
|
|
1208
1215
|
reservedName?: (string[]|null);
|
|
1216
|
+
|
|
1217
|
+
/** DescriptorProto visibility */
|
|
1218
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
1209
1219
|
}
|
|
1210
1220
|
|
|
1211
1221
|
/** Represents a DescriptorProto. */
|
|
@@ -1247,6 +1257,9 @@ export namespace google {
|
|
|
1247
1257
|
/** DescriptorProto reservedName. */
|
|
1248
1258
|
public reservedName: string[];
|
|
1249
1259
|
|
|
1260
|
+
/** DescriptorProto visibility. */
|
|
1261
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
1262
|
+
|
|
1250
1263
|
/**
|
|
1251
1264
|
* Creates a new DescriptorProto instance using the specified properties.
|
|
1252
1265
|
* @param [properties] Properties to set
|
|
@@ -2094,6 +2107,9 @@ export namespace google {
|
|
|
2094
2107
|
|
|
2095
2108
|
/** EnumDescriptorProto reservedName */
|
|
2096
2109
|
reservedName?: (string[]|null);
|
|
2110
|
+
|
|
2111
|
+
/** EnumDescriptorProto visibility */
|
|
2112
|
+
visibility?: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility|null);
|
|
2097
2113
|
}
|
|
2098
2114
|
|
|
2099
2115
|
/** Represents an EnumDescriptorProto. */
|
|
@@ -2120,6 +2136,9 @@ export namespace google {
|
|
|
2120
2136
|
/** EnumDescriptorProto reservedName. */
|
|
2121
2137
|
public reservedName: string[];
|
|
2122
2138
|
|
|
2139
|
+
/** EnumDescriptorProto visibility. */
|
|
2140
|
+
public visibility: (google.protobuf.SymbolVisibility|keyof typeof google.protobuf.SymbolVisibility);
|
|
2141
|
+
|
|
2123
2142
|
/**
|
|
2124
2143
|
* Creates a new EnumDescriptorProto instance using the specified properties.
|
|
2125
2144
|
* @param [properties] Properties to set
|
|
@@ -3054,15 +3073,18 @@ export namespace google {
|
|
|
3054
3073
|
/** FieldOptions features */
|
|
3055
3074
|
features?: (google.protobuf.IFeatureSet|null);
|
|
3056
3075
|
|
|
3076
|
+
/** FieldOptions featureSupport */
|
|
3077
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
3078
|
+
|
|
3057
3079
|
/** FieldOptions uninterpretedOption */
|
|
3058
3080
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
3059
3081
|
|
|
3060
|
-
/** FieldOptions .google.api.resourceReference */
|
|
3061
|
-
".google.api.resourceReference"?: (google.api.IResourceReference|null);
|
|
3062
|
-
|
|
3063
3082
|
/** FieldOptions .google.api.fieldBehavior */
|
|
3064
3083
|
".google.api.fieldBehavior"?: (google.api.FieldBehavior[]|null);
|
|
3065
3084
|
|
|
3085
|
+
/** FieldOptions .google.api.resourceReference */
|
|
3086
|
+
".google.api.resourceReference"?: (google.api.IResourceReference|null);
|
|
3087
|
+
|
|
3066
3088
|
/** FieldOptions .google.api.fieldInfo */
|
|
3067
3089
|
".google.api.fieldInfo"?: (google.api.IFieldInfo|null);
|
|
3068
3090
|
}
|
|
@@ -3112,6 +3134,9 @@ export namespace google {
|
|
|
3112
3134
|
/** FieldOptions features. */
|
|
3113
3135
|
public features?: (google.protobuf.IFeatureSet|null);
|
|
3114
3136
|
|
|
3137
|
+
/** FieldOptions featureSupport. */
|
|
3138
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
3139
|
+
|
|
3115
3140
|
/** FieldOptions uninterpretedOption. */
|
|
3116
3141
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
3117
3142
|
|
|
@@ -3332,6 +3357,121 @@ export namespace google {
|
|
|
3332
3357
|
*/
|
|
3333
3358
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3334
3359
|
}
|
|
3360
|
+
|
|
3361
|
+
/** Properties of a FeatureSupport. */
|
|
3362
|
+
interface IFeatureSupport {
|
|
3363
|
+
|
|
3364
|
+
/** FeatureSupport editionIntroduced */
|
|
3365
|
+
editionIntroduced?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
3366
|
+
|
|
3367
|
+
/** FeatureSupport editionDeprecated */
|
|
3368
|
+
editionDeprecated?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
3369
|
+
|
|
3370
|
+
/** FeatureSupport deprecationWarning */
|
|
3371
|
+
deprecationWarning?: (string|null);
|
|
3372
|
+
|
|
3373
|
+
/** FeatureSupport editionRemoved */
|
|
3374
|
+
editionRemoved?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
/** Represents a FeatureSupport. */
|
|
3378
|
+
class FeatureSupport implements IFeatureSupport {
|
|
3379
|
+
|
|
3380
|
+
/**
|
|
3381
|
+
* Constructs a new FeatureSupport.
|
|
3382
|
+
* @param [properties] Properties to set
|
|
3383
|
+
*/
|
|
3384
|
+
constructor(properties?: google.protobuf.FieldOptions.IFeatureSupport);
|
|
3385
|
+
|
|
3386
|
+
/** FeatureSupport editionIntroduced. */
|
|
3387
|
+
public editionIntroduced: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
3388
|
+
|
|
3389
|
+
/** FeatureSupport editionDeprecated. */
|
|
3390
|
+
public editionDeprecated: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
3391
|
+
|
|
3392
|
+
/** FeatureSupport deprecationWarning. */
|
|
3393
|
+
public deprecationWarning: string;
|
|
3394
|
+
|
|
3395
|
+
/** FeatureSupport editionRemoved. */
|
|
3396
|
+
public editionRemoved: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
3397
|
+
|
|
3398
|
+
/**
|
|
3399
|
+
* Creates a new FeatureSupport instance using the specified properties.
|
|
3400
|
+
* @param [properties] Properties to set
|
|
3401
|
+
* @returns FeatureSupport instance
|
|
3402
|
+
*/
|
|
3403
|
+
public static create(properties?: google.protobuf.FieldOptions.IFeatureSupport): google.protobuf.FieldOptions.FeatureSupport;
|
|
3404
|
+
|
|
3405
|
+
/**
|
|
3406
|
+
* Encodes the specified FeatureSupport message. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
|
|
3407
|
+
* @param message FeatureSupport message or plain object to encode
|
|
3408
|
+
* @param [writer] Writer to encode to
|
|
3409
|
+
* @returns Writer
|
|
3410
|
+
*/
|
|
3411
|
+
public static encode(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3412
|
+
|
|
3413
|
+
/**
|
|
3414
|
+
* Encodes the specified FeatureSupport message, length delimited. Does not implicitly {@link google.protobuf.FieldOptions.FeatureSupport.verify|verify} messages.
|
|
3415
|
+
* @param message FeatureSupport message or plain object to encode
|
|
3416
|
+
* @param [writer] Writer to encode to
|
|
3417
|
+
* @returns Writer
|
|
3418
|
+
*/
|
|
3419
|
+
public static encodeDelimited(message: google.protobuf.FieldOptions.IFeatureSupport, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
3420
|
+
|
|
3421
|
+
/**
|
|
3422
|
+
* Decodes a FeatureSupport message from the specified reader or buffer.
|
|
3423
|
+
* @param reader Reader or buffer to decode from
|
|
3424
|
+
* @param [length] Message length if known beforehand
|
|
3425
|
+
* @returns FeatureSupport
|
|
3426
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3427
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3428
|
+
*/
|
|
3429
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FieldOptions.FeatureSupport;
|
|
3430
|
+
|
|
3431
|
+
/**
|
|
3432
|
+
* Decodes a FeatureSupport message from the specified reader or buffer, length delimited.
|
|
3433
|
+
* @param reader Reader or buffer to decode from
|
|
3434
|
+
* @returns FeatureSupport
|
|
3435
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
3436
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
3437
|
+
*/
|
|
3438
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FieldOptions.FeatureSupport;
|
|
3439
|
+
|
|
3440
|
+
/**
|
|
3441
|
+
* Verifies a FeatureSupport message.
|
|
3442
|
+
* @param message Plain object to verify
|
|
3443
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
3444
|
+
*/
|
|
3445
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
3446
|
+
|
|
3447
|
+
/**
|
|
3448
|
+
* Creates a FeatureSupport message from a plain object. Also converts values to their respective internal types.
|
|
3449
|
+
* @param object Plain object
|
|
3450
|
+
* @returns FeatureSupport
|
|
3451
|
+
*/
|
|
3452
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FieldOptions.FeatureSupport;
|
|
3453
|
+
|
|
3454
|
+
/**
|
|
3455
|
+
* Creates a plain object from a FeatureSupport message. Also converts values to other types if specified.
|
|
3456
|
+
* @param message FeatureSupport
|
|
3457
|
+
* @param [options] Conversion options
|
|
3458
|
+
* @returns Plain object
|
|
3459
|
+
*/
|
|
3460
|
+
public static toObject(message: google.protobuf.FieldOptions.FeatureSupport, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
3461
|
+
|
|
3462
|
+
/**
|
|
3463
|
+
* Converts this FeatureSupport to JSON.
|
|
3464
|
+
* @returns JSON object
|
|
3465
|
+
*/
|
|
3466
|
+
public toJSON(): { [k: string]: any };
|
|
3467
|
+
|
|
3468
|
+
/**
|
|
3469
|
+
* Gets the default type url for FeatureSupport
|
|
3470
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
3471
|
+
* @returns The default type url
|
|
3472
|
+
*/
|
|
3473
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
3474
|
+
}
|
|
3335
3475
|
}
|
|
3336
3476
|
|
|
3337
3477
|
/** Properties of an OneofOptions. */
|
|
@@ -3570,6 +3710,9 @@ export namespace google {
|
|
|
3570
3710
|
/** EnumValueOptions debugRedact */
|
|
3571
3711
|
debugRedact?: (boolean|null);
|
|
3572
3712
|
|
|
3713
|
+
/** EnumValueOptions featureSupport */
|
|
3714
|
+
featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
3715
|
+
|
|
3573
3716
|
/** EnumValueOptions uninterpretedOption */
|
|
3574
3717
|
uninterpretedOption?: (google.protobuf.IUninterpretedOption[]|null);
|
|
3575
3718
|
}
|
|
@@ -3592,6 +3735,9 @@ export namespace google {
|
|
|
3592
3735
|
/** EnumValueOptions debugRedact. */
|
|
3593
3736
|
public debugRedact: boolean;
|
|
3594
3737
|
|
|
3738
|
+
/** EnumValueOptions featureSupport. */
|
|
3739
|
+
public featureSupport?: (google.protobuf.FieldOptions.IFeatureSupport|null);
|
|
3740
|
+
|
|
3595
3741
|
/** EnumValueOptions uninterpretedOption. */
|
|
3596
3742
|
public uninterpretedOption: google.protobuf.IUninterpretedOption[];
|
|
3597
3743
|
|
|
@@ -3690,6 +3836,9 @@ export namespace google {
|
|
|
3690
3836
|
|
|
3691
3837
|
/** ServiceOptions .google.api.oauthScopes */
|
|
3692
3838
|
".google.api.oauthScopes"?: (string|null);
|
|
3839
|
+
|
|
3840
|
+
/** ServiceOptions .google.api.apiVersion */
|
|
3841
|
+
".google.api.apiVersion"?: (string|null);
|
|
3693
3842
|
}
|
|
3694
3843
|
|
|
3695
3844
|
/** Represents a ServiceOptions. */
|
|
@@ -3938,7 +4087,7 @@ export namespace google {
|
|
|
3938
4087
|
doubleValue?: (number|null);
|
|
3939
4088
|
|
|
3940
4089
|
/** UninterpretedOption stringValue */
|
|
3941
|
-
stringValue?: (Uint8Array|string|null);
|
|
4090
|
+
stringValue?: (Uint8Array|Buffer|string|null);
|
|
3942
4091
|
|
|
3943
4092
|
/** UninterpretedOption aggregateValue */
|
|
3944
4093
|
aggregateValue?: (string|null);
|
|
@@ -3969,7 +4118,7 @@ export namespace google {
|
|
|
3969
4118
|
public doubleValue: number;
|
|
3970
4119
|
|
|
3971
4120
|
/** UninterpretedOption stringValue. */
|
|
3972
|
-
public stringValue: (Uint8Array|string);
|
|
4121
|
+
public stringValue: (Uint8Array|Buffer|string);
|
|
3973
4122
|
|
|
3974
4123
|
/** UninterpretedOption aggregateValue. */
|
|
3975
4124
|
public aggregateValue: string;
|
|
@@ -4178,6 +4327,12 @@ export namespace google {
|
|
|
4178
4327
|
|
|
4179
4328
|
/** FeatureSet jsonFormat */
|
|
4180
4329
|
jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
|
|
4330
|
+
|
|
4331
|
+
/** FeatureSet enforceNamingStyle */
|
|
4332
|
+
enforceNamingStyle?: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle|null);
|
|
4333
|
+
|
|
4334
|
+
/** FeatureSet defaultSymbolVisibility */
|
|
4335
|
+
defaultSymbolVisibility?: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|null);
|
|
4181
4336
|
}
|
|
4182
4337
|
|
|
4183
4338
|
/** Represents a FeatureSet. */
|
|
@@ -4207,6 +4362,12 @@ export namespace google {
|
|
|
4207
4362
|
/** FeatureSet jsonFormat. */
|
|
4208
4363
|
public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
|
|
4209
4364
|
|
|
4365
|
+
/** FeatureSet enforceNamingStyle. */
|
|
4366
|
+
public enforceNamingStyle: (google.protobuf.FeatureSet.EnforceNamingStyle|keyof typeof google.protobuf.FeatureSet.EnforceNamingStyle);
|
|
4367
|
+
|
|
4368
|
+
/** FeatureSet defaultSymbolVisibility. */
|
|
4369
|
+
public defaultSymbolVisibility: (google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility|keyof typeof google.protobuf.FeatureSet.VisibilityFeature.DefaultSymbolVisibility);
|
|
4370
|
+
|
|
4210
4371
|
/**
|
|
4211
4372
|
* Creates a new FeatureSet instance using the specified properties.
|
|
4212
4373
|
* @param [properties] Properties to set
|
|
@@ -4329,6 +4490,116 @@ export namespace google {
|
|
|
4329
4490
|
ALLOW = 1,
|
|
4330
4491
|
LEGACY_BEST_EFFORT = 2
|
|
4331
4492
|
}
|
|
4493
|
+
|
|
4494
|
+
/** EnforceNamingStyle enum. */
|
|
4495
|
+
enum EnforceNamingStyle {
|
|
4496
|
+
ENFORCE_NAMING_STYLE_UNKNOWN = 0,
|
|
4497
|
+
STYLE2024 = 1,
|
|
4498
|
+
STYLE_LEGACY = 2
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
/** Properties of a VisibilityFeature. */
|
|
4502
|
+
interface IVisibilityFeature {
|
|
4503
|
+
}
|
|
4504
|
+
|
|
4505
|
+
/** Represents a VisibilityFeature. */
|
|
4506
|
+
class VisibilityFeature implements IVisibilityFeature {
|
|
4507
|
+
|
|
4508
|
+
/**
|
|
4509
|
+
* Constructs a new VisibilityFeature.
|
|
4510
|
+
* @param [properties] Properties to set
|
|
4511
|
+
*/
|
|
4512
|
+
constructor(properties?: google.protobuf.FeatureSet.IVisibilityFeature);
|
|
4513
|
+
|
|
4514
|
+
/**
|
|
4515
|
+
* Creates a new VisibilityFeature instance using the specified properties.
|
|
4516
|
+
* @param [properties] Properties to set
|
|
4517
|
+
* @returns VisibilityFeature instance
|
|
4518
|
+
*/
|
|
4519
|
+
public static create(properties?: google.protobuf.FeatureSet.IVisibilityFeature): google.protobuf.FeatureSet.VisibilityFeature;
|
|
4520
|
+
|
|
4521
|
+
/**
|
|
4522
|
+
* Encodes the specified VisibilityFeature message. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
|
|
4523
|
+
* @param message VisibilityFeature message or plain object to encode
|
|
4524
|
+
* @param [writer] Writer to encode to
|
|
4525
|
+
* @returns Writer
|
|
4526
|
+
*/
|
|
4527
|
+
public static encode(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4528
|
+
|
|
4529
|
+
/**
|
|
4530
|
+
* Encodes the specified VisibilityFeature message, length delimited. Does not implicitly {@link google.protobuf.FeatureSet.VisibilityFeature.verify|verify} messages.
|
|
4531
|
+
* @param message VisibilityFeature message or plain object to encode
|
|
4532
|
+
* @param [writer] Writer to encode to
|
|
4533
|
+
* @returns Writer
|
|
4534
|
+
*/
|
|
4535
|
+
public static encodeDelimited(message: google.protobuf.FeatureSet.IVisibilityFeature, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
4536
|
+
|
|
4537
|
+
/**
|
|
4538
|
+
* Decodes a VisibilityFeature message from the specified reader or buffer.
|
|
4539
|
+
* @param reader Reader or buffer to decode from
|
|
4540
|
+
* @param [length] Message length if known beforehand
|
|
4541
|
+
* @returns VisibilityFeature
|
|
4542
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4543
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4544
|
+
*/
|
|
4545
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSet.VisibilityFeature;
|
|
4546
|
+
|
|
4547
|
+
/**
|
|
4548
|
+
* Decodes a VisibilityFeature message from the specified reader or buffer, length delimited.
|
|
4549
|
+
* @param reader Reader or buffer to decode from
|
|
4550
|
+
* @returns VisibilityFeature
|
|
4551
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
4552
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
4553
|
+
*/
|
|
4554
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSet.VisibilityFeature;
|
|
4555
|
+
|
|
4556
|
+
/**
|
|
4557
|
+
* Verifies a VisibilityFeature message.
|
|
4558
|
+
* @param message Plain object to verify
|
|
4559
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
4560
|
+
*/
|
|
4561
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
4562
|
+
|
|
4563
|
+
/**
|
|
4564
|
+
* Creates a VisibilityFeature message from a plain object. Also converts values to their respective internal types.
|
|
4565
|
+
* @param object Plain object
|
|
4566
|
+
* @returns VisibilityFeature
|
|
4567
|
+
*/
|
|
4568
|
+
public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSet.VisibilityFeature;
|
|
4569
|
+
|
|
4570
|
+
/**
|
|
4571
|
+
* Creates a plain object from a VisibilityFeature message. Also converts values to other types if specified.
|
|
4572
|
+
* @param message VisibilityFeature
|
|
4573
|
+
* @param [options] Conversion options
|
|
4574
|
+
* @returns Plain object
|
|
4575
|
+
*/
|
|
4576
|
+
public static toObject(message: google.protobuf.FeatureSet.VisibilityFeature, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
4577
|
+
|
|
4578
|
+
/**
|
|
4579
|
+
* Converts this VisibilityFeature to JSON.
|
|
4580
|
+
* @returns JSON object
|
|
4581
|
+
*/
|
|
4582
|
+
public toJSON(): { [k: string]: any };
|
|
4583
|
+
|
|
4584
|
+
/**
|
|
4585
|
+
* Gets the default type url for VisibilityFeature
|
|
4586
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
4587
|
+
* @returns The default type url
|
|
4588
|
+
*/
|
|
4589
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
4590
|
+
}
|
|
4591
|
+
|
|
4592
|
+
namespace VisibilityFeature {
|
|
4593
|
+
|
|
4594
|
+
/** DefaultSymbolVisibility enum. */
|
|
4595
|
+
enum DefaultSymbolVisibility {
|
|
4596
|
+
DEFAULT_SYMBOL_VISIBILITY_UNKNOWN = 0,
|
|
4597
|
+
EXPORT_ALL = 1,
|
|
4598
|
+
EXPORT_TOP_LEVEL = 2,
|
|
4599
|
+
LOCAL_ALL = 3,
|
|
4600
|
+
STRICT = 4
|
|
4601
|
+
}
|
|
4602
|
+
}
|
|
4332
4603
|
}
|
|
4333
4604
|
|
|
4334
4605
|
/** Properties of a FeatureSetDefaults. */
|
|
@@ -4448,8 +4719,11 @@ export namespace google {
|
|
|
4448
4719
|
/** FeatureSetEditionDefault edition */
|
|
4449
4720
|
edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
|
|
4450
4721
|
|
|
4451
|
-
/** FeatureSetEditionDefault
|
|
4452
|
-
|
|
4722
|
+
/** FeatureSetEditionDefault overridableFeatures */
|
|
4723
|
+
overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
4724
|
+
|
|
4725
|
+
/** FeatureSetEditionDefault fixedFeatures */
|
|
4726
|
+
fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
4453
4727
|
}
|
|
4454
4728
|
|
|
4455
4729
|
/** Represents a FeatureSetEditionDefault. */
|
|
@@ -4464,8 +4738,11 @@ export namespace google {
|
|
|
4464
4738
|
/** FeatureSetEditionDefault edition. */
|
|
4465
4739
|
public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
|
|
4466
4740
|
|
|
4467
|
-
/** FeatureSetEditionDefault
|
|
4468
|
-
public
|
|
4741
|
+
/** FeatureSetEditionDefault overridableFeatures. */
|
|
4742
|
+
public overridableFeatures?: (google.protobuf.IFeatureSet|null);
|
|
4743
|
+
|
|
4744
|
+
/** FeatureSetEditionDefault fixedFeatures. */
|
|
4745
|
+
public fixedFeatures?: (google.protobuf.IFeatureSet|null);
|
|
4469
4746
|
|
|
4470
4747
|
/**
|
|
4471
4748
|
* Creates a new FeatureSetEditionDefault instance using the specified properties.
|
|
@@ -4998,6 +5275,13 @@ export namespace google {
|
|
|
4998
5275
|
}
|
|
4999
5276
|
}
|
|
5000
5277
|
|
|
5278
|
+
/** SymbolVisibility enum. */
|
|
5279
|
+
enum SymbolVisibility {
|
|
5280
|
+
VISIBILITY_UNSET = 0,
|
|
5281
|
+
VISIBILITY_LOCAL = 1,
|
|
5282
|
+
VISIBILITY_EXPORT = 2
|
|
5283
|
+
}
|
|
5284
|
+
|
|
5001
5285
|
/** Properties of a Duration. */
|
|
5002
5286
|
interface IDuration {
|
|
5003
5287
|
|
|
@@ -9846,9 +10130,6 @@ export namespace google {
|
|
|
9846
10130
|
/** Annotation customEmojiMetadata. */
|
|
9847
10131
|
public customEmojiMetadata?: (google.chat.v1.ICustomEmojiMetadata|null);
|
|
9848
10132
|
|
|
9849
|
-
/** Annotation _startIndex. */
|
|
9850
|
-
public _startIndex?: "startIndex";
|
|
9851
|
-
|
|
9852
10133
|
/** Annotation metadata. */
|
|
9853
10134
|
public metadata?: ("userMention"|"slashCommand"|"richLinkMetadata"|"customEmojiMetadata");
|
|
9854
10135
|
|
|
@@ -10188,6 +10469,12 @@ export namespace google {
|
|
|
10188
10469
|
|
|
10189
10470
|
/** RichLinkMetadata chatSpaceLinkData */
|
|
10190
10471
|
chatSpaceLinkData?: (google.chat.v1.IChatSpaceLinkData|null);
|
|
10472
|
+
|
|
10473
|
+
/** RichLinkMetadata meetSpaceLinkData */
|
|
10474
|
+
meetSpaceLinkData?: (google.chat.v1.IMeetSpaceLinkData|null);
|
|
10475
|
+
|
|
10476
|
+
/** RichLinkMetadata calendarEventLinkData */
|
|
10477
|
+
calendarEventLinkData?: (google.chat.v1.ICalendarEventLinkData|null);
|
|
10191
10478
|
}
|
|
10192
10479
|
|
|
10193
10480
|
/** Represents a RichLinkMetadata. */
|
|
@@ -10211,8 +10498,14 @@ export namespace google {
|
|
|
10211
10498
|
/** RichLinkMetadata chatSpaceLinkData. */
|
|
10212
10499
|
public chatSpaceLinkData?: (google.chat.v1.IChatSpaceLinkData|null);
|
|
10213
10500
|
|
|
10501
|
+
/** RichLinkMetadata meetSpaceLinkData. */
|
|
10502
|
+
public meetSpaceLinkData?: (google.chat.v1.IMeetSpaceLinkData|null);
|
|
10503
|
+
|
|
10504
|
+
/** RichLinkMetadata calendarEventLinkData. */
|
|
10505
|
+
public calendarEventLinkData?: (google.chat.v1.ICalendarEventLinkData|null);
|
|
10506
|
+
|
|
10214
10507
|
/** RichLinkMetadata data. */
|
|
10215
|
-
public data?: ("driveLinkData"|"chatSpaceLinkData");
|
|
10508
|
+
public data?: ("driveLinkData"|"chatSpaceLinkData"|"meetSpaceLinkData"|"calendarEventLinkData");
|
|
10216
10509
|
|
|
10217
10510
|
/**
|
|
10218
10511
|
* Creates a new RichLinkMetadata instance using the specified properties.
|
|
@@ -10298,7 +10591,9 @@ export namespace google {
|
|
|
10298
10591
|
enum RichLinkType {
|
|
10299
10592
|
RICH_LINK_TYPE_UNSPECIFIED = 0,
|
|
10300
10593
|
DRIVE_FILE = 1,
|
|
10301
|
-
CHAT_SPACE = 2
|
|
10594
|
+
CHAT_SPACE = 2,
|
|
10595
|
+
MEET_SPACE = 4,
|
|
10596
|
+
CALENDAR_EVENT = 5
|
|
10302
10597
|
}
|
|
10303
10598
|
}
|
|
10304
10599
|
|
|
@@ -10611,164 +10906,394 @@ export namespace google {
|
|
|
10611
10906
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10612
10907
|
}
|
|
10613
10908
|
|
|
10614
|
-
/**
|
|
10615
|
-
|
|
10616
|
-
ANNOTATION_TYPE_UNSPECIFIED = 0,
|
|
10617
|
-
USER_MENTION = 1,
|
|
10618
|
-
SLASH_COMMAND = 2,
|
|
10619
|
-
RICH_LINK = 3,
|
|
10620
|
-
CUSTOM_EMOJI = 4
|
|
10621
|
-
}
|
|
10622
|
-
|
|
10623
|
-
/** Properties of an Attachment. */
|
|
10624
|
-
interface IAttachment {
|
|
10625
|
-
|
|
10626
|
-
/** Attachment name */
|
|
10627
|
-
name?: (string|null);
|
|
10628
|
-
|
|
10629
|
-
/** Attachment contentName */
|
|
10630
|
-
contentName?: (string|null);
|
|
10631
|
-
|
|
10632
|
-
/** Attachment contentType */
|
|
10633
|
-
contentType?: (string|null);
|
|
10634
|
-
|
|
10635
|
-
/** Attachment attachmentDataRef */
|
|
10636
|
-
attachmentDataRef?: (google.chat.v1.IAttachmentDataRef|null);
|
|
10637
|
-
|
|
10638
|
-
/** Attachment driveDataRef */
|
|
10639
|
-
driveDataRef?: (google.chat.v1.IDriveDataRef|null);
|
|
10909
|
+
/** Properties of a MeetSpaceLinkData. */
|
|
10910
|
+
interface IMeetSpaceLinkData {
|
|
10640
10911
|
|
|
10641
|
-
/**
|
|
10642
|
-
|
|
10912
|
+
/** MeetSpaceLinkData meetingCode */
|
|
10913
|
+
meetingCode?: (string|null);
|
|
10643
10914
|
|
|
10644
|
-
/**
|
|
10645
|
-
|
|
10915
|
+
/** MeetSpaceLinkData type */
|
|
10916
|
+
type?: (google.chat.v1.MeetSpaceLinkData.Type|keyof typeof google.chat.v1.MeetSpaceLinkData.Type|null);
|
|
10646
10917
|
|
|
10647
|
-
/**
|
|
10648
|
-
|
|
10918
|
+
/** MeetSpaceLinkData huddleStatus */
|
|
10919
|
+
huddleStatus?: (google.chat.v1.MeetSpaceLinkData.HuddleStatus|keyof typeof google.chat.v1.MeetSpaceLinkData.HuddleStatus|null);
|
|
10649
10920
|
}
|
|
10650
10921
|
|
|
10651
|
-
/** Represents
|
|
10652
|
-
class
|
|
10922
|
+
/** Represents a MeetSpaceLinkData. */
|
|
10923
|
+
class MeetSpaceLinkData implements IMeetSpaceLinkData {
|
|
10653
10924
|
|
|
10654
10925
|
/**
|
|
10655
|
-
* Constructs a new
|
|
10926
|
+
* Constructs a new MeetSpaceLinkData.
|
|
10656
10927
|
* @param [properties] Properties to set
|
|
10657
10928
|
*/
|
|
10658
|
-
constructor(properties?: google.chat.v1.
|
|
10659
|
-
|
|
10660
|
-
/** Attachment name. */
|
|
10661
|
-
public name: string;
|
|
10662
|
-
|
|
10663
|
-
/** Attachment contentName. */
|
|
10664
|
-
public contentName: string;
|
|
10929
|
+
constructor(properties?: google.chat.v1.IMeetSpaceLinkData);
|
|
10665
10930
|
|
|
10666
|
-
/**
|
|
10667
|
-
public
|
|
10668
|
-
|
|
10669
|
-
/** Attachment attachmentDataRef. */
|
|
10670
|
-
public attachmentDataRef?: (google.chat.v1.IAttachmentDataRef|null);
|
|
10671
|
-
|
|
10672
|
-
/** Attachment driveDataRef. */
|
|
10673
|
-
public driveDataRef?: (google.chat.v1.IDriveDataRef|null);
|
|
10931
|
+
/** MeetSpaceLinkData meetingCode. */
|
|
10932
|
+
public meetingCode: string;
|
|
10674
10933
|
|
|
10675
|
-
/**
|
|
10676
|
-
public
|
|
10677
|
-
|
|
10678
|
-
/** Attachment downloadUri. */
|
|
10679
|
-
public downloadUri: string;
|
|
10680
|
-
|
|
10681
|
-
/** Attachment source. */
|
|
10682
|
-
public source: (google.chat.v1.Attachment.Source|keyof typeof google.chat.v1.Attachment.Source);
|
|
10934
|
+
/** MeetSpaceLinkData type. */
|
|
10935
|
+
public type: (google.chat.v1.MeetSpaceLinkData.Type|keyof typeof google.chat.v1.MeetSpaceLinkData.Type);
|
|
10683
10936
|
|
|
10684
|
-
/**
|
|
10685
|
-
public
|
|
10937
|
+
/** MeetSpaceLinkData huddleStatus. */
|
|
10938
|
+
public huddleStatus: (google.chat.v1.MeetSpaceLinkData.HuddleStatus|keyof typeof google.chat.v1.MeetSpaceLinkData.HuddleStatus);
|
|
10686
10939
|
|
|
10687
10940
|
/**
|
|
10688
|
-
* Creates a new
|
|
10941
|
+
* Creates a new MeetSpaceLinkData instance using the specified properties.
|
|
10689
10942
|
* @param [properties] Properties to set
|
|
10690
|
-
* @returns
|
|
10943
|
+
* @returns MeetSpaceLinkData instance
|
|
10691
10944
|
*/
|
|
10692
|
-
public static create(properties?: google.chat.v1.
|
|
10945
|
+
public static create(properties?: google.chat.v1.IMeetSpaceLinkData): google.chat.v1.MeetSpaceLinkData;
|
|
10693
10946
|
|
|
10694
10947
|
/**
|
|
10695
|
-
* Encodes the specified
|
|
10696
|
-
* @param message
|
|
10948
|
+
* Encodes the specified MeetSpaceLinkData message. Does not implicitly {@link google.chat.v1.MeetSpaceLinkData.verify|verify} messages.
|
|
10949
|
+
* @param message MeetSpaceLinkData message or plain object to encode
|
|
10697
10950
|
* @param [writer] Writer to encode to
|
|
10698
10951
|
* @returns Writer
|
|
10699
10952
|
*/
|
|
10700
|
-
public static encode(message: google.chat.v1.
|
|
10953
|
+
public static encode(message: google.chat.v1.IMeetSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10701
10954
|
|
|
10702
10955
|
/**
|
|
10703
|
-
* Encodes the specified
|
|
10704
|
-
* @param message
|
|
10956
|
+
* Encodes the specified MeetSpaceLinkData message, length delimited. Does not implicitly {@link google.chat.v1.MeetSpaceLinkData.verify|verify} messages.
|
|
10957
|
+
* @param message MeetSpaceLinkData message or plain object to encode
|
|
10705
10958
|
* @param [writer] Writer to encode to
|
|
10706
10959
|
* @returns Writer
|
|
10707
10960
|
*/
|
|
10708
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
10961
|
+
public static encodeDelimited(message: google.chat.v1.IMeetSpaceLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10709
10962
|
|
|
10710
10963
|
/**
|
|
10711
|
-
* Decodes
|
|
10964
|
+
* Decodes a MeetSpaceLinkData message from the specified reader or buffer.
|
|
10712
10965
|
* @param reader Reader or buffer to decode from
|
|
10713
10966
|
* @param [length] Message length if known beforehand
|
|
10714
|
-
* @returns
|
|
10967
|
+
* @returns MeetSpaceLinkData
|
|
10715
10968
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10716
10969
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10717
10970
|
*/
|
|
10718
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
10971
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.MeetSpaceLinkData;
|
|
10719
10972
|
|
|
10720
10973
|
/**
|
|
10721
|
-
* Decodes
|
|
10974
|
+
* Decodes a MeetSpaceLinkData message from the specified reader or buffer, length delimited.
|
|
10722
10975
|
* @param reader Reader or buffer to decode from
|
|
10723
|
-
* @returns
|
|
10976
|
+
* @returns MeetSpaceLinkData
|
|
10724
10977
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10725
10978
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10726
10979
|
*/
|
|
10727
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
10980
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.MeetSpaceLinkData;
|
|
10728
10981
|
|
|
10729
10982
|
/**
|
|
10730
|
-
* Verifies
|
|
10983
|
+
* Verifies a MeetSpaceLinkData message.
|
|
10731
10984
|
* @param message Plain object to verify
|
|
10732
10985
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
10733
10986
|
*/
|
|
10734
10987
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
10735
10988
|
|
|
10736
10989
|
/**
|
|
10737
|
-
* Creates
|
|
10990
|
+
* Creates a MeetSpaceLinkData message from a plain object. Also converts values to their respective internal types.
|
|
10738
10991
|
* @param object Plain object
|
|
10739
|
-
* @returns
|
|
10992
|
+
* @returns MeetSpaceLinkData
|
|
10740
10993
|
*/
|
|
10741
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
10994
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.MeetSpaceLinkData;
|
|
10742
10995
|
|
|
10743
10996
|
/**
|
|
10744
|
-
* Creates a plain object from
|
|
10745
|
-
* @param message
|
|
10997
|
+
* Creates a plain object from a MeetSpaceLinkData message. Also converts values to other types if specified.
|
|
10998
|
+
* @param message MeetSpaceLinkData
|
|
10746
10999
|
* @param [options] Conversion options
|
|
10747
11000
|
* @returns Plain object
|
|
10748
11001
|
*/
|
|
10749
|
-
public static toObject(message: google.chat.v1.
|
|
11002
|
+
public static toObject(message: google.chat.v1.MeetSpaceLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10750
11003
|
|
|
10751
11004
|
/**
|
|
10752
|
-
* Converts this
|
|
11005
|
+
* Converts this MeetSpaceLinkData to JSON.
|
|
10753
11006
|
* @returns JSON object
|
|
10754
11007
|
*/
|
|
10755
11008
|
public toJSON(): { [k: string]: any };
|
|
10756
11009
|
|
|
10757
11010
|
/**
|
|
10758
|
-
* Gets the default type url for
|
|
11011
|
+
* Gets the default type url for MeetSpaceLinkData
|
|
10759
11012
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10760
11013
|
* @returns The default type url
|
|
10761
11014
|
*/
|
|
10762
11015
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10763
11016
|
}
|
|
10764
11017
|
|
|
10765
|
-
namespace
|
|
11018
|
+
namespace MeetSpaceLinkData {
|
|
10766
11019
|
|
|
10767
|
-
/**
|
|
10768
|
-
enum
|
|
10769
|
-
|
|
10770
|
-
|
|
10771
|
-
|
|
11020
|
+
/** Type enum. */
|
|
11021
|
+
enum Type {
|
|
11022
|
+
TYPE_UNSPECIFIED = 0,
|
|
11023
|
+
MEETING = 1,
|
|
11024
|
+
HUDDLE = 2
|
|
11025
|
+
}
|
|
11026
|
+
|
|
11027
|
+
/** HuddleStatus enum. */
|
|
11028
|
+
enum HuddleStatus {
|
|
11029
|
+
HUDDLE_STATUS_UNSPECIFIED = 0,
|
|
11030
|
+
STARTED = 1,
|
|
11031
|
+
ENDED = 2,
|
|
11032
|
+
MISSED = 3
|
|
11033
|
+
}
|
|
11034
|
+
}
|
|
11035
|
+
|
|
11036
|
+
/** Properties of a CalendarEventLinkData. */
|
|
11037
|
+
interface ICalendarEventLinkData {
|
|
11038
|
+
|
|
11039
|
+
/** CalendarEventLinkData calendarId */
|
|
11040
|
+
calendarId?: (string|null);
|
|
11041
|
+
|
|
11042
|
+
/** CalendarEventLinkData eventId */
|
|
11043
|
+
eventId?: (string|null);
|
|
11044
|
+
}
|
|
11045
|
+
|
|
11046
|
+
/** Represents a CalendarEventLinkData. */
|
|
11047
|
+
class CalendarEventLinkData implements ICalendarEventLinkData {
|
|
11048
|
+
|
|
11049
|
+
/**
|
|
11050
|
+
* Constructs a new CalendarEventLinkData.
|
|
11051
|
+
* @param [properties] Properties to set
|
|
11052
|
+
*/
|
|
11053
|
+
constructor(properties?: google.chat.v1.ICalendarEventLinkData);
|
|
11054
|
+
|
|
11055
|
+
/** CalendarEventLinkData calendarId. */
|
|
11056
|
+
public calendarId: string;
|
|
11057
|
+
|
|
11058
|
+
/** CalendarEventLinkData eventId. */
|
|
11059
|
+
public eventId: string;
|
|
11060
|
+
|
|
11061
|
+
/**
|
|
11062
|
+
* Creates a new CalendarEventLinkData instance using the specified properties.
|
|
11063
|
+
* @param [properties] Properties to set
|
|
11064
|
+
* @returns CalendarEventLinkData instance
|
|
11065
|
+
*/
|
|
11066
|
+
public static create(properties?: google.chat.v1.ICalendarEventLinkData): google.chat.v1.CalendarEventLinkData;
|
|
11067
|
+
|
|
11068
|
+
/**
|
|
11069
|
+
* Encodes the specified CalendarEventLinkData message. Does not implicitly {@link google.chat.v1.CalendarEventLinkData.verify|verify} messages.
|
|
11070
|
+
* @param message CalendarEventLinkData message or plain object to encode
|
|
11071
|
+
* @param [writer] Writer to encode to
|
|
11072
|
+
* @returns Writer
|
|
11073
|
+
*/
|
|
11074
|
+
public static encode(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11075
|
+
|
|
11076
|
+
/**
|
|
11077
|
+
* Encodes the specified CalendarEventLinkData message, length delimited. Does not implicitly {@link google.chat.v1.CalendarEventLinkData.verify|verify} messages.
|
|
11078
|
+
* @param message CalendarEventLinkData message or plain object to encode
|
|
11079
|
+
* @param [writer] Writer to encode to
|
|
11080
|
+
* @returns Writer
|
|
11081
|
+
*/
|
|
11082
|
+
public static encodeDelimited(message: google.chat.v1.ICalendarEventLinkData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11083
|
+
|
|
11084
|
+
/**
|
|
11085
|
+
* Decodes a CalendarEventLinkData message from the specified reader or buffer.
|
|
11086
|
+
* @param reader Reader or buffer to decode from
|
|
11087
|
+
* @param [length] Message length if known beforehand
|
|
11088
|
+
* @returns CalendarEventLinkData
|
|
11089
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11090
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11091
|
+
*/
|
|
11092
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CalendarEventLinkData;
|
|
11093
|
+
|
|
11094
|
+
/**
|
|
11095
|
+
* Decodes a CalendarEventLinkData message from the specified reader or buffer, length delimited.
|
|
11096
|
+
* @param reader Reader or buffer to decode from
|
|
11097
|
+
* @returns CalendarEventLinkData
|
|
11098
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11099
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11100
|
+
*/
|
|
11101
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CalendarEventLinkData;
|
|
11102
|
+
|
|
11103
|
+
/**
|
|
11104
|
+
* Verifies a CalendarEventLinkData message.
|
|
11105
|
+
* @param message Plain object to verify
|
|
11106
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11107
|
+
*/
|
|
11108
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11109
|
+
|
|
11110
|
+
/**
|
|
11111
|
+
* Creates a CalendarEventLinkData message from a plain object. Also converts values to their respective internal types.
|
|
11112
|
+
* @param object Plain object
|
|
11113
|
+
* @returns CalendarEventLinkData
|
|
11114
|
+
*/
|
|
11115
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.CalendarEventLinkData;
|
|
11116
|
+
|
|
11117
|
+
/**
|
|
11118
|
+
* Creates a plain object from a CalendarEventLinkData message. Also converts values to other types if specified.
|
|
11119
|
+
* @param message CalendarEventLinkData
|
|
11120
|
+
* @param [options] Conversion options
|
|
11121
|
+
* @returns Plain object
|
|
11122
|
+
*/
|
|
11123
|
+
public static toObject(message: google.chat.v1.CalendarEventLinkData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11124
|
+
|
|
11125
|
+
/**
|
|
11126
|
+
* Converts this CalendarEventLinkData to JSON.
|
|
11127
|
+
* @returns JSON object
|
|
11128
|
+
*/
|
|
11129
|
+
public toJSON(): { [k: string]: any };
|
|
11130
|
+
|
|
11131
|
+
/**
|
|
11132
|
+
* Gets the default type url for CalendarEventLinkData
|
|
11133
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11134
|
+
* @returns The default type url
|
|
11135
|
+
*/
|
|
11136
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11137
|
+
}
|
|
11138
|
+
|
|
11139
|
+
/** AnnotationType enum. */
|
|
11140
|
+
enum AnnotationType {
|
|
11141
|
+
ANNOTATION_TYPE_UNSPECIFIED = 0,
|
|
11142
|
+
USER_MENTION = 1,
|
|
11143
|
+
SLASH_COMMAND = 2,
|
|
11144
|
+
RICH_LINK = 3,
|
|
11145
|
+
CUSTOM_EMOJI = 4
|
|
11146
|
+
}
|
|
11147
|
+
|
|
11148
|
+
/** Properties of an Attachment. */
|
|
11149
|
+
interface IAttachment {
|
|
11150
|
+
|
|
11151
|
+
/** Attachment name */
|
|
11152
|
+
name?: (string|null);
|
|
11153
|
+
|
|
11154
|
+
/** Attachment contentName */
|
|
11155
|
+
contentName?: (string|null);
|
|
11156
|
+
|
|
11157
|
+
/** Attachment contentType */
|
|
11158
|
+
contentType?: (string|null);
|
|
11159
|
+
|
|
11160
|
+
/** Attachment attachmentDataRef */
|
|
11161
|
+
attachmentDataRef?: (google.chat.v1.IAttachmentDataRef|null);
|
|
11162
|
+
|
|
11163
|
+
/** Attachment driveDataRef */
|
|
11164
|
+
driveDataRef?: (google.chat.v1.IDriveDataRef|null);
|
|
11165
|
+
|
|
11166
|
+
/** Attachment thumbnailUri */
|
|
11167
|
+
thumbnailUri?: (string|null);
|
|
11168
|
+
|
|
11169
|
+
/** Attachment downloadUri */
|
|
11170
|
+
downloadUri?: (string|null);
|
|
11171
|
+
|
|
11172
|
+
/** Attachment source */
|
|
11173
|
+
source?: (google.chat.v1.Attachment.Source|keyof typeof google.chat.v1.Attachment.Source|null);
|
|
11174
|
+
}
|
|
11175
|
+
|
|
11176
|
+
/** Represents an Attachment. */
|
|
11177
|
+
class Attachment implements IAttachment {
|
|
11178
|
+
|
|
11179
|
+
/**
|
|
11180
|
+
* Constructs a new Attachment.
|
|
11181
|
+
* @param [properties] Properties to set
|
|
11182
|
+
*/
|
|
11183
|
+
constructor(properties?: google.chat.v1.IAttachment);
|
|
11184
|
+
|
|
11185
|
+
/** Attachment name. */
|
|
11186
|
+
public name: string;
|
|
11187
|
+
|
|
11188
|
+
/** Attachment contentName. */
|
|
11189
|
+
public contentName: string;
|
|
11190
|
+
|
|
11191
|
+
/** Attachment contentType. */
|
|
11192
|
+
public contentType: string;
|
|
11193
|
+
|
|
11194
|
+
/** Attachment attachmentDataRef. */
|
|
11195
|
+
public attachmentDataRef?: (google.chat.v1.IAttachmentDataRef|null);
|
|
11196
|
+
|
|
11197
|
+
/** Attachment driveDataRef. */
|
|
11198
|
+
public driveDataRef?: (google.chat.v1.IDriveDataRef|null);
|
|
11199
|
+
|
|
11200
|
+
/** Attachment thumbnailUri. */
|
|
11201
|
+
public thumbnailUri: string;
|
|
11202
|
+
|
|
11203
|
+
/** Attachment downloadUri. */
|
|
11204
|
+
public downloadUri: string;
|
|
11205
|
+
|
|
11206
|
+
/** Attachment source. */
|
|
11207
|
+
public source: (google.chat.v1.Attachment.Source|keyof typeof google.chat.v1.Attachment.Source);
|
|
11208
|
+
|
|
11209
|
+
/** Attachment dataRef. */
|
|
11210
|
+
public dataRef?: ("attachmentDataRef"|"driveDataRef");
|
|
11211
|
+
|
|
11212
|
+
/**
|
|
11213
|
+
* Creates a new Attachment instance using the specified properties.
|
|
11214
|
+
* @param [properties] Properties to set
|
|
11215
|
+
* @returns Attachment instance
|
|
11216
|
+
*/
|
|
11217
|
+
public static create(properties?: google.chat.v1.IAttachment): google.chat.v1.Attachment;
|
|
11218
|
+
|
|
11219
|
+
/**
|
|
11220
|
+
* Encodes the specified Attachment message. Does not implicitly {@link google.chat.v1.Attachment.verify|verify} messages.
|
|
11221
|
+
* @param message Attachment message or plain object to encode
|
|
11222
|
+
* @param [writer] Writer to encode to
|
|
11223
|
+
* @returns Writer
|
|
11224
|
+
*/
|
|
11225
|
+
public static encode(message: google.chat.v1.IAttachment, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11226
|
+
|
|
11227
|
+
/**
|
|
11228
|
+
* Encodes the specified Attachment message, length delimited. Does not implicitly {@link google.chat.v1.Attachment.verify|verify} messages.
|
|
11229
|
+
* @param message Attachment message or plain object to encode
|
|
11230
|
+
* @param [writer] Writer to encode to
|
|
11231
|
+
* @returns Writer
|
|
11232
|
+
*/
|
|
11233
|
+
public static encodeDelimited(message: google.chat.v1.IAttachment, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11234
|
+
|
|
11235
|
+
/**
|
|
11236
|
+
* Decodes an Attachment message from the specified reader or buffer.
|
|
11237
|
+
* @param reader Reader or buffer to decode from
|
|
11238
|
+
* @param [length] Message length if known beforehand
|
|
11239
|
+
* @returns Attachment
|
|
11240
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11241
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11242
|
+
*/
|
|
11243
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.Attachment;
|
|
11244
|
+
|
|
11245
|
+
/**
|
|
11246
|
+
* Decodes an Attachment message from the specified reader or buffer, length delimited.
|
|
11247
|
+
* @param reader Reader or buffer to decode from
|
|
11248
|
+
* @returns Attachment
|
|
11249
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11250
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11251
|
+
*/
|
|
11252
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.Attachment;
|
|
11253
|
+
|
|
11254
|
+
/**
|
|
11255
|
+
* Verifies an Attachment message.
|
|
11256
|
+
* @param message Plain object to verify
|
|
11257
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11258
|
+
*/
|
|
11259
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11260
|
+
|
|
11261
|
+
/**
|
|
11262
|
+
* Creates an Attachment message from a plain object. Also converts values to their respective internal types.
|
|
11263
|
+
* @param object Plain object
|
|
11264
|
+
* @returns Attachment
|
|
11265
|
+
*/
|
|
11266
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.Attachment;
|
|
11267
|
+
|
|
11268
|
+
/**
|
|
11269
|
+
* Creates a plain object from an Attachment message. Also converts values to other types if specified.
|
|
11270
|
+
* @param message Attachment
|
|
11271
|
+
* @param [options] Conversion options
|
|
11272
|
+
* @returns Plain object
|
|
11273
|
+
*/
|
|
11274
|
+
public static toObject(message: google.chat.v1.Attachment, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11275
|
+
|
|
11276
|
+
/**
|
|
11277
|
+
* Converts this Attachment to JSON.
|
|
11278
|
+
* @returns JSON object
|
|
11279
|
+
*/
|
|
11280
|
+
public toJSON(): { [k: string]: any };
|
|
11281
|
+
|
|
11282
|
+
/**
|
|
11283
|
+
* Gets the default type url for Attachment
|
|
11284
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11285
|
+
* @returns The default type url
|
|
11286
|
+
*/
|
|
11287
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11288
|
+
}
|
|
11289
|
+
|
|
11290
|
+
namespace Attachment {
|
|
11291
|
+
|
|
11292
|
+
/** Source enum. */
|
|
11293
|
+
enum Source {
|
|
11294
|
+
SOURCE_UNSPECIFIED = 0,
|
|
11295
|
+
DRIVE_FILE = 1,
|
|
11296
|
+
UPLOADED_CONTENT = 2
|
|
10772
11297
|
}
|
|
10773
11298
|
}
|
|
10774
11299
|
|
|
@@ -11487,8 +12012,20 @@ export namespace google {
|
|
|
11487
12012
|
/** Properties of a CustomEmoji. */
|
|
11488
12013
|
interface ICustomEmoji {
|
|
11489
12014
|
|
|
12015
|
+
/** CustomEmoji name */
|
|
12016
|
+
name?: (string|null);
|
|
12017
|
+
|
|
11490
12018
|
/** CustomEmoji uid */
|
|
11491
12019
|
uid?: (string|null);
|
|
12020
|
+
|
|
12021
|
+
/** CustomEmoji emojiName */
|
|
12022
|
+
emojiName?: (string|null);
|
|
12023
|
+
|
|
12024
|
+
/** CustomEmoji temporaryImageUri */
|
|
12025
|
+
temporaryImageUri?: (string|null);
|
|
12026
|
+
|
|
12027
|
+
/** CustomEmoji payload */
|
|
12028
|
+
payload?: (google.chat.v1.CustomEmoji.ICustomEmojiPayload|null);
|
|
11492
12029
|
}
|
|
11493
12030
|
|
|
11494
12031
|
/** Represents a CustomEmoji. */
|
|
@@ -11500,9 +12037,21 @@ export namespace google {
|
|
|
11500
12037
|
*/
|
|
11501
12038
|
constructor(properties?: google.chat.v1.ICustomEmoji);
|
|
11502
12039
|
|
|
12040
|
+
/** CustomEmoji name. */
|
|
12041
|
+
public name: string;
|
|
12042
|
+
|
|
11503
12043
|
/** CustomEmoji uid. */
|
|
11504
12044
|
public uid: string;
|
|
11505
12045
|
|
|
12046
|
+
/** CustomEmoji emojiName. */
|
|
12047
|
+
public emojiName: string;
|
|
12048
|
+
|
|
12049
|
+
/** CustomEmoji temporaryImageUri. */
|
|
12050
|
+
public temporaryImageUri: string;
|
|
12051
|
+
|
|
12052
|
+
/** CustomEmoji payload. */
|
|
12053
|
+
public payload?: (google.chat.v1.CustomEmoji.ICustomEmojiPayload|null);
|
|
12054
|
+
|
|
11506
12055
|
/**
|
|
11507
12056
|
* Creates a new CustomEmoji instance using the specified properties.
|
|
11508
12057
|
* @param [properties] Properties to set
|
|
@@ -11565,540 +12114,1146 @@ export namespace google {
|
|
|
11565
12114
|
* @param [options] Conversion options
|
|
11566
12115
|
* @returns Plain object
|
|
11567
12116
|
*/
|
|
11568
|
-
public static toObject(message: google.chat.v1.CustomEmoji, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12117
|
+
public static toObject(message: google.chat.v1.CustomEmoji, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12118
|
+
|
|
12119
|
+
/**
|
|
12120
|
+
* Converts this CustomEmoji to JSON.
|
|
12121
|
+
* @returns JSON object
|
|
12122
|
+
*/
|
|
12123
|
+
public toJSON(): { [k: string]: any };
|
|
12124
|
+
|
|
12125
|
+
/**
|
|
12126
|
+
* Gets the default type url for CustomEmoji
|
|
12127
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12128
|
+
* @returns The default type url
|
|
12129
|
+
*/
|
|
12130
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12131
|
+
}
|
|
12132
|
+
|
|
12133
|
+
namespace CustomEmoji {
|
|
12134
|
+
|
|
12135
|
+
/** Properties of a CustomEmojiPayload. */
|
|
12136
|
+
interface ICustomEmojiPayload {
|
|
12137
|
+
|
|
12138
|
+
/** CustomEmojiPayload fileContent */
|
|
12139
|
+
fileContent?: (Uint8Array|Buffer|string|null);
|
|
12140
|
+
|
|
12141
|
+
/** CustomEmojiPayload filename */
|
|
12142
|
+
filename?: (string|null);
|
|
12143
|
+
}
|
|
12144
|
+
|
|
12145
|
+
/** Represents a CustomEmojiPayload. */
|
|
12146
|
+
class CustomEmojiPayload implements ICustomEmojiPayload {
|
|
12147
|
+
|
|
12148
|
+
/**
|
|
12149
|
+
* Constructs a new CustomEmojiPayload.
|
|
12150
|
+
* @param [properties] Properties to set
|
|
12151
|
+
*/
|
|
12152
|
+
constructor(properties?: google.chat.v1.CustomEmoji.ICustomEmojiPayload);
|
|
12153
|
+
|
|
12154
|
+
/** CustomEmojiPayload fileContent. */
|
|
12155
|
+
public fileContent: (Uint8Array|Buffer|string);
|
|
12156
|
+
|
|
12157
|
+
/** CustomEmojiPayload filename. */
|
|
12158
|
+
public filename: string;
|
|
12159
|
+
|
|
12160
|
+
/**
|
|
12161
|
+
* Creates a new CustomEmojiPayload instance using the specified properties.
|
|
12162
|
+
* @param [properties] Properties to set
|
|
12163
|
+
* @returns CustomEmojiPayload instance
|
|
12164
|
+
*/
|
|
12165
|
+
public static create(properties?: google.chat.v1.CustomEmoji.ICustomEmojiPayload): google.chat.v1.CustomEmoji.CustomEmojiPayload;
|
|
12166
|
+
|
|
12167
|
+
/**
|
|
12168
|
+
* Encodes the specified CustomEmojiPayload message. Does not implicitly {@link google.chat.v1.CustomEmoji.CustomEmojiPayload.verify|verify} messages.
|
|
12169
|
+
* @param message CustomEmojiPayload message or plain object to encode
|
|
12170
|
+
* @param [writer] Writer to encode to
|
|
12171
|
+
* @returns Writer
|
|
12172
|
+
*/
|
|
12173
|
+
public static encode(message: google.chat.v1.CustomEmoji.ICustomEmojiPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12174
|
+
|
|
12175
|
+
/**
|
|
12176
|
+
* Encodes the specified CustomEmojiPayload message, length delimited. Does not implicitly {@link google.chat.v1.CustomEmoji.CustomEmojiPayload.verify|verify} messages.
|
|
12177
|
+
* @param message CustomEmojiPayload message or plain object to encode
|
|
12178
|
+
* @param [writer] Writer to encode to
|
|
12179
|
+
* @returns Writer
|
|
12180
|
+
*/
|
|
12181
|
+
public static encodeDelimited(message: google.chat.v1.CustomEmoji.ICustomEmojiPayload, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12182
|
+
|
|
12183
|
+
/**
|
|
12184
|
+
* Decodes a CustomEmojiPayload message from the specified reader or buffer.
|
|
12185
|
+
* @param reader Reader or buffer to decode from
|
|
12186
|
+
* @param [length] Message length if known beforehand
|
|
12187
|
+
* @returns CustomEmojiPayload
|
|
12188
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12189
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12190
|
+
*/
|
|
12191
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CustomEmoji.CustomEmojiPayload;
|
|
12192
|
+
|
|
12193
|
+
/**
|
|
12194
|
+
* Decodes a CustomEmojiPayload message from the specified reader or buffer, length delimited.
|
|
12195
|
+
* @param reader Reader or buffer to decode from
|
|
12196
|
+
* @returns CustomEmojiPayload
|
|
12197
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12198
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12199
|
+
*/
|
|
12200
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CustomEmoji.CustomEmojiPayload;
|
|
12201
|
+
|
|
12202
|
+
/**
|
|
12203
|
+
* Verifies a CustomEmojiPayload message.
|
|
12204
|
+
* @param message Plain object to verify
|
|
12205
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12206
|
+
*/
|
|
12207
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12208
|
+
|
|
12209
|
+
/**
|
|
12210
|
+
* Creates a CustomEmojiPayload message from a plain object. Also converts values to their respective internal types.
|
|
12211
|
+
* @param object Plain object
|
|
12212
|
+
* @returns CustomEmojiPayload
|
|
12213
|
+
*/
|
|
12214
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.CustomEmoji.CustomEmojiPayload;
|
|
12215
|
+
|
|
12216
|
+
/**
|
|
12217
|
+
* Creates a plain object from a CustomEmojiPayload message. Also converts values to other types if specified.
|
|
12218
|
+
* @param message CustomEmojiPayload
|
|
12219
|
+
* @param [options] Conversion options
|
|
12220
|
+
* @returns Plain object
|
|
12221
|
+
*/
|
|
12222
|
+
public static toObject(message: google.chat.v1.CustomEmoji.CustomEmojiPayload, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12223
|
+
|
|
12224
|
+
/**
|
|
12225
|
+
* Converts this CustomEmojiPayload to JSON.
|
|
12226
|
+
* @returns JSON object
|
|
12227
|
+
*/
|
|
12228
|
+
public toJSON(): { [k: string]: any };
|
|
12229
|
+
|
|
12230
|
+
/**
|
|
12231
|
+
* Gets the default type url for CustomEmojiPayload
|
|
12232
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12233
|
+
* @returns The default type url
|
|
12234
|
+
*/
|
|
12235
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12236
|
+
}
|
|
12237
|
+
}
|
|
12238
|
+
|
|
12239
|
+
/** Properties of an EmojiReactionSummary. */
|
|
12240
|
+
interface IEmojiReactionSummary {
|
|
12241
|
+
|
|
12242
|
+
/** EmojiReactionSummary emoji */
|
|
12243
|
+
emoji?: (google.chat.v1.IEmoji|null);
|
|
12244
|
+
|
|
12245
|
+
/** EmojiReactionSummary reactionCount */
|
|
12246
|
+
reactionCount?: (number|null);
|
|
12247
|
+
}
|
|
12248
|
+
|
|
12249
|
+
/** Represents an EmojiReactionSummary. */
|
|
12250
|
+
class EmojiReactionSummary implements IEmojiReactionSummary {
|
|
12251
|
+
|
|
12252
|
+
/**
|
|
12253
|
+
* Constructs a new EmojiReactionSummary.
|
|
12254
|
+
* @param [properties] Properties to set
|
|
12255
|
+
*/
|
|
12256
|
+
constructor(properties?: google.chat.v1.IEmojiReactionSummary);
|
|
12257
|
+
|
|
12258
|
+
/** EmojiReactionSummary emoji. */
|
|
12259
|
+
public emoji?: (google.chat.v1.IEmoji|null);
|
|
12260
|
+
|
|
12261
|
+
/** EmojiReactionSummary reactionCount. */
|
|
12262
|
+
public reactionCount?: (number|null);
|
|
12263
|
+
|
|
12264
|
+
/**
|
|
12265
|
+
* Creates a new EmojiReactionSummary instance using the specified properties.
|
|
12266
|
+
* @param [properties] Properties to set
|
|
12267
|
+
* @returns EmojiReactionSummary instance
|
|
12268
|
+
*/
|
|
12269
|
+
public static create(properties?: google.chat.v1.IEmojiReactionSummary): google.chat.v1.EmojiReactionSummary;
|
|
12270
|
+
|
|
12271
|
+
/**
|
|
12272
|
+
* Encodes the specified EmojiReactionSummary message. Does not implicitly {@link google.chat.v1.EmojiReactionSummary.verify|verify} messages.
|
|
12273
|
+
* @param message EmojiReactionSummary message or plain object to encode
|
|
12274
|
+
* @param [writer] Writer to encode to
|
|
12275
|
+
* @returns Writer
|
|
12276
|
+
*/
|
|
12277
|
+
public static encode(message: google.chat.v1.IEmojiReactionSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12278
|
+
|
|
12279
|
+
/**
|
|
12280
|
+
* Encodes the specified EmojiReactionSummary message, length delimited. Does not implicitly {@link google.chat.v1.EmojiReactionSummary.verify|verify} messages.
|
|
12281
|
+
* @param message EmojiReactionSummary message or plain object to encode
|
|
12282
|
+
* @param [writer] Writer to encode to
|
|
12283
|
+
* @returns Writer
|
|
12284
|
+
*/
|
|
12285
|
+
public static encodeDelimited(message: google.chat.v1.IEmojiReactionSummary, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12286
|
+
|
|
12287
|
+
/**
|
|
12288
|
+
* Decodes an EmojiReactionSummary message from the specified reader or buffer.
|
|
12289
|
+
* @param reader Reader or buffer to decode from
|
|
12290
|
+
* @param [length] Message length if known beforehand
|
|
12291
|
+
* @returns EmojiReactionSummary
|
|
12292
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12293
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12294
|
+
*/
|
|
12295
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.EmojiReactionSummary;
|
|
12296
|
+
|
|
12297
|
+
/**
|
|
12298
|
+
* Decodes an EmojiReactionSummary message from the specified reader or buffer, length delimited.
|
|
12299
|
+
* @param reader Reader or buffer to decode from
|
|
12300
|
+
* @returns EmojiReactionSummary
|
|
12301
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12302
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12303
|
+
*/
|
|
12304
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.EmojiReactionSummary;
|
|
12305
|
+
|
|
12306
|
+
/**
|
|
12307
|
+
* Verifies an EmojiReactionSummary message.
|
|
12308
|
+
* @param message Plain object to verify
|
|
12309
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12310
|
+
*/
|
|
12311
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12312
|
+
|
|
12313
|
+
/**
|
|
12314
|
+
* Creates an EmojiReactionSummary message from a plain object. Also converts values to their respective internal types.
|
|
12315
|
+
* @param object Plain object
|
|
12316
|
+
* @returns EmojiReactionSummary
|
|
12317
|
+
*/
|
|
12318
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.EmojiReactionSummary;
|
|
12319
|
+
|
|
12320
|
+
/**
|
|
12321
|
+
* Creates a plain object from an EmojiReactionSummary message. Also converts values to other types if specified.
|
|
12322
|
+
* @param message EmojiReactionSummary
|
|
12323
|
+
* @param [options] Conversion options
|
|
12324
|
+
* @returns Plain object
|
|
12325
|
+
*/
|
|
12326
|
+
public static toObject(message: google.chat.v1.EmojiReactionSummary, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12327
|
+
|
|
12328
|
+
/**
|
|
12329
|
+
* Converts this EmojiReactionSummary to JSON.
|
|
12330
|
+
* @returns JSON object
|
|
12331
|
+
*/
|
|
12332
|
+
public toJSON(): { [k: string]: any };
|
|
12333
|
+
|
|
12334
|
+
/**
|
|
12335
|
+
* Gets the default type url for EmojiReactionSummary
|
|
12336
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12337
|
+
* @returns The default type url
|
|
12338
|
+
*/
|
|
12339
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12340
|
+
}
|
|
12341
|
+
|
|
12342
|
+
/** Properties of a CreateReactionRequest. */
|
|
12343
|
+
interface ICreateReactionRequest {
|
|
12344
|
+
|
|
12345
|
+
/** CreateReactionRequest parent */
|
|
12346
|
+
parent?: (string|null);
|
|
12347
|
+
|
|
12348
|
+
/** CreateReactionRequest reaction */
|
|
12349
|
+
reaction?: (google.chat.v1.IReaction|null);
|
|
12350
|
+
}
|
|
12351
|
+
|
|
12352
|
+
/** Represents a CreateReactionRequest. */
|
|
12353
|
+
class CreateReactionRequest implements ICreateReactionRequest {
|
|
12354
|
+
|
|
12355
|
+
/**
|
|
12356
|
+
* Constructs a new CreateReactionRequest.
|
|
12357
|
+
* @param [properties] Properties to set
|
|
12358
|
+
*/
|
|
12359
|
+
constructor(properties?: google.chat.v1.ICreateReactionRequest);
|
|
12360
|
+
|
|
12361
|
+
/** CreateReactionRequest parent. */
|
|
12362
|
+
public parent: string;
|
|
12363
|
+
|
|
12364
|
+
/** CreateReactionRequest reaction. */
|
|
12365
|
+
public reaction?: (google.chat.v1.IReaction|null);
|
|
12366
|
+
|
|
12367
|
+
/**
|
|
12368
|
+
* Creates a new CreateReactionRequest instance using the specified properties.
|
|
12369
|
+
* @param [properties] Properties to set
|
|
12370
|
+
* @returns CreateReactionRequest instance
|
|
12371
|
+
*/
|
|
12372
|
+
public static create(properties?: google.chat.v1.ICreateReactionRequest): google.chat.v1.CreateReactionRequest;
|
|
12373
|
+
|
|
12374
|
+
/**
|
|
12375
|
+
* Encodes the specified CreateReactionRequest message. Does not implicitly {@link google.chat.v1.CreateReactionRequest.verify|verify} messages.
|
|
12376
|
+
* @param message CreateReactionRequest message or plain object to encode
|
|
12377
|
+
* @param [writer] Writer to encode to
|
|
12378
|
+
* @returns Writer
|
|
12379
|
+
*/
|
|
12380
|
+
public static encode(message: google.chat.v1.ICreateReactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12381
|
+
|
|
12382
|
+
/**
|
|
12383
|
+
* Encodes the specified CreateReactionRequest message, length delimited. Does not implicitly {@link google.chat.v1.CreateReactionRequest.verify|verify} messages.
|
|
12384
|
+
* @param message CreateReactionRequest message or plain object to encode
|
|
12385
|
+
* @param [writer] Writer to encode to
|
|
12386
|
+
* @returns Writer
|
|
12387
|
+
*/
|
|
12388
|
+
public static encodeDelimited(message: google.chat.v1.ICreateReactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12389
|
+
|
|
12390
|
+
/**
|
|
12391
|
+
* Decodes a CreateReactionRequest message from the specified reader or buffer.
|
|
12392
|
+
* @param reader Reader or buffer to decode from
|
|
12393
|
+
* @param [length] Message length if known beforehand
|
|
12394
|
+
* @returns CreateReactionRequest
|
|
12395
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12396
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12397
|
+
*/
|
|
12398
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CreateReactionRequest;
|
|
12399
|
+
|
|
12400
|
+
/**
|
|
12401
|
+
* Decodes a CreateReactionRequest message from the specified reader or buffer, length delimited.
|
|
12402
|
+
* @param reader Reader or buffer to decode from
|
|
12403
|
+
* @returns CreateReactionRequest
|
|
12404
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12405
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12406
|
+
*/
|
|
12407
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CreateReactionRequest;
|
|
12408
|
+
|
|
12409
|
+
/**
|
|
12410
|
+
* Verifies a CreateReactionRequest message.
|
|
12411
|
+
* @param message Plain object to verify
|
|
12412
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12413
|
+
*/
|
|
12414
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12415
|
+
|
|
12416
|
+
/**
|
|
12417
|
+
* Creates a CreateReactionRequest message from a plain object. Also converts values to their respective internal types.
|
|
12418
|
+
* @param object Plain object
|
|
12419
|
+
* @returns CreateReactionRequest
|
|
12420
|
+
*/
|
|
12421
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.CreateReactionRequest;
|
|
12422
|
+
|
|
12423
|
+
/**
|
|
12424
|
+
* Creates a plain object from a CreateReactionRequest message. Also converts values to other types if specified.
|
|
12425
|
+
* @param message CreateReactionRequest
|
|
12426
|
+
* @param [options] Conversion options
|
|
12427
|
+
* @returns Plain object
|
|
12428
|
+
*/
|
|
12429
|
+
public static toObject(message: google.chat.v1.CreateReactionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12430
|
+
|
|
12431
|
+
/**
|
|
12432
|
+
* Converts this CreateReactionRequest to JSON.
|
|
12433
|
+
* @returns JSON object
|
|
12434
|
+
*/
|
|
12435
|
+
public toJSON(): { [k: string]: any };
|
|
12436
|
+
|
|
12437
|
+
/**
|
|
12438
|
+
* Gets the default type url for CreateReactionRequest
|
|
12439
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12440
|
+
* @returns The default type url
|
|
12441
|
+
*/
|
|
12442
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12443
|
+
}
|
|
12444
|
+
|
|
12445
|
+
/** Properties of a ListReactionsRequest. */
|
|
12446
|
+
interface IListReactionsRequest {
|
|
12447
|
+
|
|
12448
|
+
/** ListReactionsRequest parent */
|
|
12449
|
+
parent?: (string|null);
|
|
12450
|
+
|
|
12451
|
+
/** ListReactionsRequest pageSize */
|
|
12452
|
+
pageSize?: (number|null);
|
|
12453
|
+
|
|
12454
|
+
/** ListReactionsRequest pageToken */
|
|
12455
|
+
pageToken?: (string|null);
|
|
12456
|
+
|
|
12457
|
+
/** ListReactionsRequest filter */
|
|
12458
|
+
filter?: (string|null);
|
|
12459
|
+
}
|
|
12460
|
+
|
|
12461
|
+
/** Represents a ListReactionsRequest. */
|
|
12462
|
+
class ListReactionsRequest implements IListReactionsRequest {
|
|
12463
|
+
|
|
12464
|
+
/**
|
|
12465
|
+
* Constructs a new ListReactionsRequest.
|
|
12466
|
+
* @param [properties] Properties to set
|
|
12467
|
+
*/
|
|
12468
|
+
constructor(properties?: google.chat.v1.IListReactionsRequest);
|
|
12469
|
+
|
|
12470
|
+
/** ListReactionsRequest parent. */
|
|
12471
|
+
public parent: string;
|
|
12472
|
+
|
|
12473
|
+
/** ListReactionsRequest pageSize. */
|
|
12474
|
+
public pageSize: number;
|
|
12475
|
+
|
|
12476
|
+
/** ListReactionsRequest pageToken. */
|
|
12477
|
+
public pageToken: string;
|
|
12478
|
+
|
|
12479
|
+
/** ListReactionsRequest filter. */
|
|
12480
|
+
public filter: string;
|
|
12481
|
+
|
|
12482
|
+
/**
|
|
12483
|
+
* Creates a new ListReactionsRequest instance using the specified properties.
|
|
12484
|
+
* @param [properties] Properties to set
|
|
12485
|
+
* @returns ListReactionsRequest instance
|
|
12486
|
+
*/
|
|
12487
|
+
public static create(properties?: google.chat.v1.IListReactionsRequest): google.chat.v1.ListReactionsRequest;
|
|
12488
|
+
|
|
12489
|
+
/**
|
|
12490
|
+
* Encodes the specified ListReactionsRequest message. Does not implicitly {@link google.chat.v1.ListReactionsRequest.verify|verify} messages.
|
|
12491
|
+
* @param message ListReactionsRequest message or plain object to encode
|
|
12492
|
+
* @param [writer] Writer to encode to
|
|
12493
|
+
* @returns Writer
|
|
12494
|
+
*/
|
|
12495
|
+
public static encode(message: google.chat.v1.IListReactionsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12496
|
+
|
|
12497
|
+
/**
|
|
12498
|
+
* Encodes the specified ListReactionsRequest message, length delimited. Does not implicitly {@link google.chat.v1.ListReactionsRequest.verify|verify} messages.
|
|
12499
|
+
* @param message ListReactionsRequest message or plain object to encode
|
|
12500
|
+
* @param [writer] Writer to encode to
|
|
12501
|
+
* @returns Writer
|
|
12502
|
+
*/
|
|
12503
|
+
public static encodeDelimited(message: google.chat.v1.IListReactionsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12504
|
+
|
|
12505
|
+
/**
|
|
12506
|
+
* Decodes a ListReactionsRequest message from the specified reader or buffer.
|
|
12507
|
+
* @param reader Reader or buffer to decode from
|
|
12508
|
+
* @param [length] Message length if known beforehand
|
|
12509
|
+
* @returns ListReactionsRequest
|
|
12510
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12511
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12512
|
+
*/
|
|
12513
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ListReactionsRequest;
|
|
12514
|
+
|
|
12515
|
+
/**
|
|
12516
|
+
* Decodes a ListReactionsRequest message from the specified reader or buffer, length delimited.
|
|
12517
|
+
* @param reader Reader or buffer to decode from
|
|
12518
|
+
* @returns ListReactionsRequest
|
|
12519
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12520
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12521
|
+
*/
|
|
12522
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ListReactionsRequest;
|
|
12523
|
+
|
|
12524
|
+
/**
|
|
12525
|
+
* Verifies a ListReactionsRequest message.
|
|
12526
|
+
* @param message Plain object to verify
|
|
12527
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12528
|
+
*/
|
|
12529
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12530
|
+
|
|
12531
|
+
/**
|
|
12532
|
+
* Creates a ListReactionsRequest message from a plain object. Also converts values to their respective internal types.
|
|
12533
|
+
* @param object Plain object
|
|
12534
|
+
* @returns ListReactionsRequest
|
|
12535
|
+
*/
|
|
12536
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.ListReactionsRequest;
|
|
12537
|
+
|
|
12538
|
+
/**
|
|
12539
|
+
* Creates a plain object from a ListReactionsRequest message. Also converts values to other types if specified.
|
|
12540
|
+
* @param message ListReactionsRequest
|
|
12541
|
+
* @param [options] Conversion options
|
|
12542
|
+
* @returns Plain object
|
|
12543
|
+
*/
|
|
12544
|
+
public static toObject(message: google.chat.v1.ListReactionsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12545
|
+
|
|
12546
|
+
/**
|
|
12547
|
+
* Converts this ListReactionsRequest to JSON.
|
|
12548
|
+
* @returns JSON object
|
|
12549
|
+
*/
|
|
12550
|
+
public toJSON(): { [k: string]: any };
|
|
12551
|
+
|
|
12552
|
+
/**
|
|
12553
|
+
* Gets the default type url for ListReactionsRequest
|
|
12554
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12555
|
+
* @returns The default type url
|
|
12556
|
+
*/
|
|
12557
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12558
|
+
}
|
|
12559
|
+
|
|
12560
|
+
/** Properties of a ListReactionsResponse. */
|
|
12561
|
+
interface IListReactionsResponse {
|
|
12562
|
+
|
|
12563
|
+
/** ListReactionsResponse reactions */
|
|
12564
|
+
reactions?: (google.chat.v1.IReaction[]|null);
|
|
12565
|
+
|
|
12566
|
+
/** ListReactionsResponse nextPageToken */
|
|
12567
|
+
nextPageToken?: (string|null);
|
|
12568
|
+
}
|
|
12569
|
+
|
|
12570
|
+
/** Represents a ListReactionsResponse. */
|
|
12571
|
+
class ListReactionsResponse implements IListReactionsResponse {
|
|
12572
|
+
|
|
12573
|
+
/**
|
|
12574
|
+
* Constructs a new ListReactionsResponse.
|
|
12575
|
+
* @param [properties] Properties to set
|
|
12576
|
+
*/
|
|
12577
|
+
constructor(properties?: google.chat.v1.IListReactionsResponse);
|
|
12578
|
+
|
|
12579
|
+
/** ListReactionsResponse reactions. */
|
|
12580
|
+
public reactions: google.chat.v1.IReaction[];
|
|
12581
|
+
|
|
12582
|
+
/** ListReactionsResponse nextPageToken. */
|
|
12583
|
+
public nextPageToken: string;
|
|
12584
|
+
|
|
12585
|
+
/**
|
|
12586
|
+
* Creates a new ListReactionsResponse instance using the specified properties.
|
|
12587
|
+
* @param [properties] Properties to set
|
|
12588
|
+
* @returns ListReactionsResponse instance
|
|
12589
|
+
*/
|
|
12590
|
+
public static create(properties?: google.chat.v1.IListReactionsResponse): google.chat.v1.ListReactionsResponse;
|
|
12591
|
+
|
|
12592
|
+
/**
|
|
12593
|
+
* Encodes the specified ListReactionsResponse message. Does not implicitly {@link google.chat.v1.ListReactionsResponse.verify|verify} messages.
|
|
12594
|
+
* @param message ListReactionsResponse message or plain object to encode
|
|
12595
|
+
* @param [writer] Writer to encode to
|
|
12596
|
+
* @returns Writer
|
|
12597
|
+
*/
|
|
12598
|
+
public static encode(message: google.chat.v1.IListReactionsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12599
|
+
|
|
12600
|
+
/**
|
|
12601
|
+
* Encodes the specified ListReactionsResponse message, length delimited. Does not implicitly {@link google.chat.v1.ListReactionsResponse.verify|verify} messages.
|
|
12602
|
+
* @param message ListReactionsResponse message or plain object to encode
|
|
12603
|
+
* @param [writer] Writer to encode to
|
|
12604
|
+
* @returns Writer
|
|
12605
|
+
*/
|
|
12606
|
+
public static encodeDelimited(message: google.chat.v1.IListReactionsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12607
|
+
|
|
12608
|
+
/**
|
|
12609
|
+
* Decodes a ListReactionsResponse message from the specified reader or buffer.
|
|
12610
|
+
* @param reader Reader or buffer to decode from
|
|
12611
|
+
* @param [length] Message length if known beforehand
|
|
12612
|
+
* @returns ListReactionsResponse
|
|
12613
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12614
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12615
|
+
*/
|
|
12616
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ListReactionsResponse;
|
|
12617
|
+
|
|
12618
|
+
/**
|
|
12619
|
+
* Decodes a ListReactionsResponse message from the specified reader or buffer, length delimited.
|
|
12620
|
+
* @param reader Reader or buffer to decode from
|
|
12621
|
+
* @returns ListReactionsResponse
|
|
12622
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12623
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12624
|
+
*/
|
|
12625
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ListReactionsResponse;
|
|
12626
|
+
|
|
12627
|
+
/**
|
|
12628
|
+
* Verifies a ListReactionsResponse message.
|
|
12629
|
+
* @param message Plain object to verify
|
|
12630
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12631
|
+
*/
|
|
12632
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12633
|
+
|
|
12634
|
+
/**
|
|
12635
|
+
* Creates a ListReactionsResponse message from a plain object. Also converts values to their respective internal types.
|
|
12636
|
+
* @param object Plain object
|
|
12637
|
+
* @returns ListReactionsResponse
|
|
12638
|
+
*/
|
|
12639
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.ListReactionsResponse;
|
|
12640
|
+
|
|
12641
|
+
/**
|
|
12642
|
+
* Creates a plain object from a ListReactionsResponse message. Also converts values to other types if specified.
|
|
12643
|
+
* @param message ListReactionsResponse
|
|
12644
|
+
* @param [options] Conversion options
|
|
12645
|
+
* @returns Plain object
|
|
12646
|
+
*/
|
|
12647
|
+
public static toObject(message: google.chat.v1.ListReactionsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12648
|
+
|
|
12649
|
+
/**
|
|
12650
|
+
* Converts this ListReactionsResponse to JSON.
|
|
12651
|
+
* @returns JSON object
|
|
12652
|
+
*/
|
|
12653
|
+
public toJSON(): { [k: string]: any };
|
|
12654
|
+
|
|
12655
|
+
/**
|
|
12656
|
+
* Gets the default type url for ListReactionsResponse
|
|
12657
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12658
|
+
* @returns The default type url
|
|
12659
|
+
*/
|
|
12660
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12661
|
+
}
|
|
12662
|
+
|
|
12663
|
+
/** Properties of a DeleteReactionRequest. */
|
|
12664
|
+
interface IDeleteReactionRequest {
|
|
12665
|
+
|
|
12666
|
+
/** DeleteReactionRequest name */
|
|
12667
|
+
name?: (string|null);
|
|
12668
|
+
}
|
|
12669
|
+
|
|
12670
|
+
/** Represents a DeleteReactionRequest. */
|
|
12671
|
+
class DeleteReactionRequest implements IDeleteReactionRequest {
|
|
12672
|
+
|
|
12673
|
+
/**
|
|
12674
|
+
* Constructs a new DeleteReactionRequest.
|
|
12675
|
+
* @param [properties] Properties to set
|
|
12676
|
+
*/
|
|
12677
|
+
constructor(properties?: google.chat.v1.IDeleteReactionRequest);
|
|
12678
|
+
|
|
12679
|
+
/** DeleteReactionRequest name. */
|
|
12680
|
+
public name: string;
|
|
12681
|
+
|
|
12682
|
+
/**
|
|
12683
|
+
* Creates a new DeleteReactionRequest instance using the specified properties.
|
|
12684
|
+
* @param [properties] Properties to set
|
|
12685
|
+
* @returns DeleteReactionRequest instance
|
|
12686
|
+
*/
|
|
12687
|
+
public static create(properties?: google.chat.v1.IDeleteReactionRequest): google.chat.v1.DeleteReactionRequest;
|
|
12688
|
+
|
|
12689
|
+
/**
|
|
12690
|
+
* Encodes the specified DeleteReactionRequest message. Does not implicitly {@link google.chat.v1.DeleteReactionRequest.verify|verify} messages.
|
|
12691
|
+
* @param message DeleteReactionRequest message or plain object to encode
|
|
12692
|
+
* @param [writer] Writer to encode to
|
|
12693
|
+
* @returns Writer
|
|
12694
|
+
*/
|
|
12695
|
+
public static encode(message: google.chat.v1.IDeleteReactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12696
|
+
|
|
12697
|
+
/**
|
|
12698
|
+
* Encodes the specified DeleteReactionRequest message, length delimited. Does not implicitly {@link google.chat.v1.DeleteReactionRequest.verify|verify} messages.
|
|
12699
|
+
* @param message DeleteReactionRequest message or plain object to encode
|
|
12700
|
+
* @param [writer] Writer to encode to
|
|
12701
|
+
* @returns Writer
|
|
12702
|
+
*/
|
|
12703
|
+
public static encodeDelimited(message: google.chat.v1.IDeleteReactionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12704
|
+
|
|
12705
|
+
/**
|
|
12706
|
+
* Decodes a DeleteReactionRequest message from the specified reader or buffer.
|
|
12707
|
+
* @param reader Reader or buffer to decode from
|
|
12708
|
+
* @param [length] Message length if known beforehand
|
|
12709
|
+
* @returns DeleteReactionRequest
|
|
12710
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12711
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12712
|
+
*/
|
|
12713
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.DeleteReactionRequest;
|
|
12714
|
+
|
|
12715
|
+
/**
|
|
12716
|
+
* Decodes a DeleteReactionRequest message from the specified reader or buffer, length delimited.
|
|
12717
|
+
* @param reader Reader or buffer to decode from
|
|
12718
|
+
* @returns DeleteReactionRequest
|
|
12719
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12720
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12721
|
+
*/
|
|
12722
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.DeleteReactionRequest;
|
|
12723
|
+
|
|
12724
|
+
/**
|
|
12725
|
+
* Verifies a DeleteReactionRequest message.
|
|
12726
|
+
* @param message Plain object to verify
|
|
12727
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
12728
|
+
*/
|
|
12729
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
12730
|
+
|
|
12731
|
+
/**
|
|
12732
|
+
* Creates a DeleteReactionRequest message from a plain object. Also converts values to their respective internal types.
|
|
12733
|
+
* @param object Plain object
|
|
12734
|
+
* @returns DeleteReactionRequest
|
|
12735
|
+
*/
|
|
12736
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.DeleteReactionRequest;
|
|
12737
|
+
|
|
12738
|
+
/**
|
|
12739
|
+
* Creates a plain object from a DeleteReactionRequest message. Also converts values to other types if specified.
|
|
12740
|
+
* @param message DeleteReactionRequest
|
|
12741
|
+
* @param [options] Conversion options
|
|
12742
|
+
* @returns Plain object
|
|
12743
|
+
*/
|
|
12744
|
+
public static toObject(message: google.chat.v1.DeleteReactionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11569
12745
|
|
|
11570
12746
|
/**
|
|
11571
|
-
* Converts this
|
|
12747
|
+
* Converts this DeleteReactionRequest to JSON.
|
|
11572
12748
|
* @returns JSON object
|
|
11573
12749
|
*/
|
|
11574
12750
|
public toJSON(): { [k: string]: any };
|
|
11575
12751
|
|
|
11576
12752
|
/**
|
|
11577
|
-
* Gets the default type url for
|
|
12753
|
+
* Gets the default type url for DeleteReactionRequest
|
|
11578
12754
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11579
12755
|
* @returns The default type url
|
|
11580
12756
|
*/
|
|
11581
12757
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11582
12758
|
}
|
|
11583
12759
|
|
|
11584
|
-
/** Properties of
|
|
11585
|
-
interface
|
|
11586
|
-
|
|
11587
|
-
/** EmojiReactionSummary emoji */
|
|
11588
|
-
emoji?: (google.chat.v1.IEmoji|null);
|
|
12760
|
+
/** Properties of a CreateCustomEmojiRequest. */
|
|
12761
|
+
interface ICreateCustomEmojiRequest {
|
|
11589
12762
|
|
|
11590
|
-
/**
|
|
11591
|
-
|
|
12763
|
+
/** CreateCustomEmojiRequest customEmoji */
|
|
12764
|
+
customEmoji?: (google.chat.v1.ICustomEmoji|null);
|
|
11592
12765
|
}
|
|
11593
12766
|
|
|
11594
|
-
/** Represents
|
|
11595
|
-
class
|
|
12767
|
+
/** Represents a CreateCustomEmojiRequest. */
|
|
12768
|
+
class CreateCustomEmojiRequest implements ICreateCustomEmojiRequest {
|
|
11596
12769
|
|
|
11597
12770
|
/**
|
|
11598
|
-
* Constructs a new
|
|
12771
|
+
* Constructs a new CreateCustomEmojiRequest.
|
|
11599
12772
|
* @param [properties] Properties to set
|
|
11600
12773
|
*/
|
|
11601
|
-
constructor(properties?: google.chat.v1.
|
|
11602
|
-
|
|
11603
|
-
/** EmojiReactionSummary emoji. */
|
|
11604
|
-
public emoji?: (google.chat.v1.IEmoji|null);
|
|
11605
|
-
|
|
11606
|
-
/** EmojiReactionSummary reactionCount. */
|
|
11607
|
-
public reactionCount?: (number|null);
|
|
12774
|
+
constructor(properties?: google.chat.v1.ICreateCustomEmojiRequest);
|
|
11608
12775
|
|
|
11609
|
-
/**
|
|
11610
|
-
public
|
|
12776
|
+
/** CreateCustomEmojiRequest customEmoji. */
|
|
12777
|
+
public customEmoji?: (google.chat.v1.ICustomEmoji|null);
|
|
11611
12778
|
|
|
11612
12779
|
/**
|
|
11613
|
-
* Creates a new
|
|
12780
|
+
* Creates a new CreateCustomEmojiRequest instance using the specified properties.
|
|
11614
12781
|
* @param [properties] Properties to set
|
|
11615
|
-
* @returns
|
|
12782
|
+
* @returns CreateCustomEmojiRequest instance
|
|
11616
12783
|
*/
|
|
11617
|
-
public static create(properties?: google.chat.v1.
|
|
12784
|
+
public static create(properties?: google.chat.v1.ICreateCustomEmojiRequest): google.chat.v1.CreateCustomEmojiRequest;
|
|
11618
12785
|
|
|
11619
12786
|
/**
|
|
11620
|
-
* Encodes the specified
|
|
11621
|
-
* @param message
|
|
12787
|
+
* Encodes the specified CreateCustomEmojiRequest message. Does not implicitly {@link google.chat.v1.CreateCustomEmojiRequest.verify|verify} messages.
|
|
12788
|
+
* @param message CreateCustomEmojiRequest message or plain object to encode
|
|
11622
12789
|
* @param [writer] Writer to encode to
|
|
11623
12790
|
* @returns Writer
|
|
11624
12791
|
*/
|
|
11625
|
-
public static encode(message: google.chat.v1.
|
|
12792
|
+
public static encode(message: google.chat.v1.ICreateCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11626
12793
|
|
|
11627
12794
|
/**
|
|
11628
|
-
* Encodes the specified
|
|
11629
|
-
* @param message
|
|
12795
|
+
* Encodes the specified CreateCustomEmojiRequest message, length delimited. Does not implicitly {@link google.chat.v1.CreateCustomEmojiRequest.verify|verify} messages.
|
|
12796
|
+
* @param message CreateCustomEmojiRequest message or plain object to encode
|
|
11630
12797
|
* @param [writer] Writer to encode to
|
|
11631
12798
|
* @returns Writer
|
|
11632
12799
|
*/
|
|
11633
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
12800
|
+
public static encodeDelimited(message: google.chat.v1.ICreateCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11634
12801
|
|
|
11635
12802
|
/**
|
|
11636
|
-
* Decodes
|
|
12803
|
+
* Decodes a CreateCustomEmojiRequest message from the specified reader or buffer.
|
|
11637
12804
|
* @param reader Reader or buffer to decode from
|
|
11638
12805
|
* @param [length] Message length if known beforehand
|
|
11639
|
-
* @returns
|
|
12806
|
+
* @returns CreateCustomEmojiRequest
|
|
11640
12807
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11641
12808
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11642
12809
|
*/
|
|
11643
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
12810
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.CreateCustomEmojiRequest;
|
|
11644
12811
|
|
|
11645
12812
|
/**
|
|
11646
|
-
* Decodes
|
|
12813
|
+
* Decodes a CreateCustomEmojiRequest message from the specified reader or buffer, length delimited.
|
|
11647
12814
|
* @param reader Reader or buffer to decode from
|
|
11648
|
-
* @returns
|
|
12815
|
+
* @returns CreateCustomEmojiRequest
|
|
11649
12816
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11650
12817
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11651
12818
|
*/
|
|
11652
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
12819
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.CreateCustomEmojiRequest;
|
|
11653
12820
|
|
|
11654
12821
|
/**
|
|
11655
|
-
* Verifies
|
|
12822
|
+
* Verifies a CreateCustomEmojiRequest message.
|
|
11656
12823
|
* @param message Plain object to verify
|
|
11657
12824
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11658
12825
|
*/
|
|
11659
12826
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11660
12827
|
|
|
11661
12828
|
/**
|
|
11662
|
-
* Creates
|
|
12829
|
+
* Creates a CreateCustomEmojiRequest message from a plain object. Also converts values to their respective internal types.
|
|
11663
12830
|
* @param object Plain object
|
|
11664
|
-
* @returns
|
|
12831
|
+
* @returns CreateCustomEmojiRequest
|
|
11665
12832
|
*/
|
|
11666
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
12833
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.CreateCustomEmojiRequest;
|
|
11667
12834
|
|
|
11668
12835
|
/**
|
|
11669
|
-
* Creates a plain object from
|
|
11670
|
-
* @param message
|
|
12836
|
+
* Creates a plain object from a CreateCustomEmojiRequest message. Also converts values to other types if specified.
|
|
12837
|
+
* @param message CreateCustomEmojiRequest
|
|
11671
12838
|
* @param [options] Conversion options
|
|
11672
12839
|
* @returns Plain object
|
|
11673
12840
|
*/
|
|
11674
|
-
public static toObject(message: google.chat.v1.
|
|
12841
|
+
public static toObject(message: google.chat.v1.CreateCustomEmojiRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11675
12842
|
|
|
11676
12843
|
/**
|
|
11677
|
-
* Converts this
|
|
12844
|
+
* Converts this CreateCustomEmojiRequest to JSON.
|
|
11678
12845
|
* @returns JSON object
|
|
11679
12846
|
*/
|
|
11680
12847
|
public toJSON(): { [k: string]: any };
|
|
11681
12848
|
|
|
11682
12849
|
/**
|
|
11683
|
-
* Gets the default type url for
|
|
12850
|
+
* Gets the default type url for CreateCustomEmojiRequest
|
|
11684
12851
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11685
12852
|
* @returns The default type url
|
|
11686
12853
|
*/
|
|
11687
12854
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11688
12855
|
}
|
|
11689
12856
|
|
|
11690
|
-
/** Properties of a
|
|
11691
|
-
interface
|
|
11692
|
-
|
|
11693
|
-
/** CreateReactionRequest parent */
|
|
11694
|
-
parent?: (string|null);
|
|
12857
|
+
/** Properties of a GetCustomEmojiRequest. */
|
|
12858
|
+
interface IGetCustomEmojiRequest {
|
|
11695
12859
|
|
|
11696
|
-
/**
|
|
11697
|
-
|
|
12860
|
+
/** GetCustomEmojiRequest name */
|
|
12861
|
+
name?: (string|null);
|
|
11698
12862
|
}
|
|
11699
12863
|
|
|
11700
|
-
/** Represents a
|
|
11701
|
-
class
|
|
12864
|
+
/** Represents a GetCustomEmojiRequest. */
|
|
12865
|
+
class GetCustomEmojiRequest implements IGetCustomEmojiRequest {
|
|
11702
12866
|
|
|
11703
12867
|
/**
|
|
11704
|
-
* Constructs a new
|
|
12868
|
+
* Constructs a new GetCustomEmojiRequest.
|
|
11705
12869
|
* @param [properties] Properties to set
|
|
11706
12870
|
*/
|
|
11707
|
-
constructor(properties?: google.chat.v1.
|
|
11708
|
-
|
|
11709
|
-
/** CreateReactionRequest parent. */
|
|
11710
|
-
public parent: string;
|
|
12871
|
+
constructor(properties?: google.chat.v1.IGetCustomEmojiRequest);
|
|
11711
12872
|
|
|
11712
|
-
/**
|
|
11713
|
-
public
|
|
12873
|
+
/** GetCustomEmojiRequest name. */
|
|
12874
|
+
public name: string;
|
|
11714
12875
|
|
|
11715
12876
|
/**
|
|
11716
|
-
* Creates a new
|
|
12877
|
+
* Creates a new GetCustomEmojiRequest instance using the specified properties.
|
|
11717
12878
|
* @param [properties] Properties to set
|
|
11718
|
-
* @returns
|
|
12879
|
+
* @returns GetCustomEmojiRequest instance
|
|
11719
12880
|
*/
|
|
11720
|
-
public static create(properties?: google.chat.v1.
|
|
12881
|
+
public static create(properties?: google.chat.v1.IGetCustomEmojiRequest): google.chat.v1.GetCustomEmojiRequest;
|
|
11721
12882
|
|
|
11722
12883
|
/**
|
|
11723
|
-
* Encodes the specified
|
|
11724
|
-
* @param message
|
|
12884
|
+
* Encodes the specified GetCustomEmojiRequest message. Does not implicitly {@link google.chat.v1.GetCustomEmojiRequest.verify|verify} messages.
|
|
12885
|
+
* @param message GetCustomEmojiRequest message or plain object to encode
|
|
11725
12886
|
* @param [writer] Writer to encode to
|
|
11726
12887
|
* @returns Writer
|
|
11727
12888
|
*/
|
|
11728
|
-
public static encode(message: google.chat.v1.
|
|
12889
|
+
public static encode(message: google.chat.v1.IGetCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11729
12890
|
|
|
11730
12891
|
/**
|
|
11731
|
-
* Encodes the specified
|
|
11732
|
-
* @param message
|
|
12892
|
+
* Encodes the specified GetCustomEmojiRequest message, length delimited. Does not implicitly {@link google.chat.v1.GetCustomEmojiRequest.verify|verify} messages.
|
|
12893
|
+
* @param message GetCustomEmojiRequest message or plain object to encode
|
|
11733
12894
|
* @param [writer] Writer to encode to
|
|
11734
12895
|
* @returns Writer
|
|
11735
12896
|
*/
|
|
11736
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
12897
|
+
public static encodeDelimited(message: google.chat.v1.IGetCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11737
12898
|
|
|
11738
12899
|
/**
|
|
11739
|
-
* Decodes a
|
|
12900
|
+
* Decodes a GetCustomEmojiRequest message from the specified reader or buffer.
|
|
11740
12901
|
* @param reader Reader or buffer to decode from
|
|
11741
12902
|
* @param [length] Message length if known beforehand
|
|
11742
|
-
* @returns
|
|
12903
|
+
* @returns GetCustomEmojiRequest
|
|
11743
12904
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11744
12905
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11745
12906
|
*/
|
|
11746
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
12907
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.GetCustomEmojiRequest;
|
|
11747
12908
|
|
|
11748
12909
|
/**
|
|
11749
|
-
* Decodes a
|
|
12910
|
+
* Decodes a GetCustomEmojiRequest message from the specified reader or buffer, length delimited.
|
|
11750
12911
|
* @param reader Reader or buffer to decode from
|
|
11751
|
-
* @returns
|
|
12912
|
+
* @returns GetCustomEmojiRequest
|
|
11752
12913
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11753
12914
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11754
12915
|
*/
|
|
11755
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
12916
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.GetCustomEmojiRequest;
|
|
11756
12917
|
|
|
11757
12918
|
/**
|
|
11758
|
-
* Verifies a
|
|
12919
|
+
* Verifies a GetCustomEmojiRequest message.
|
|
11759
12920
|
* @param message Plain object to verify
|
|
11760
12921
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11761
12922
|
*/
|
|
11762
12923
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11763
12924
|
|
|
11764
12925
|
/**
|
|
11765
|
-
* Creates a
|
|
12926
|
+
* Creates a GetCustomEmojiRequest message from a plain object. Also converts values to their respective internal types.
|
|
11766
12927
|
* @param object Plain object
|
|
11767
|
-
* @returns
|
|
12928
|
+
* @returns GetCustomEmojiRequest
|
|
11768
12929
|
*/
|
|
11769
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
12930
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.GetCustomEmojiRequest;
|
|
11770
12931
|
|
|
11771
12932
|
/**
|
|
11772
|
-
* Creates a plain object from a
|
|
11773
|
-
* @param message
|
|
12933
|
+
* Creates a plain object from a GetCustomEmojiRequest message. Also converts values to other types if specified.
|
|
12934
|
+
* @param message GetCustomEmojiRequest
|
|
11774
12935
|
* @param [options] Conversion options
|
|
11775
12936
|
* @returns Plain object
|
|
11776
12937
|
*/
|
|
11777
|
-
public static toObject(message: google.chat.v1.
|
|
12938
|
+
public static toObject(message: google.chat.v1.GetCustomEmojiRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11778
12939
|
|
|
11779
12940
|
/**
|
|
11780
|
-
* Converts this
|
|
12941
|
+
* Converts this GetCustomEmojiRequest to JSON.
|
|
11781
12942
|
* @returns JSON object
|
|
11782
12943
|
*/
|
|
11783
12944
|
public toJSON(): { [k: string]: any };
|
|
11784
12945
|
|
|
11785
12946
|
/**
|
|
11786
|
-
* Gets the default type url for
|
|
12947
|
+
* Gets the default type url for GetCustomEmojiRequest
|
|
11787
12948
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11788
12949
|
* @returns The default type url
|
|
11789
12950
|
*/
|
|
11790
12951
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11791
12952
|
}
|
|
11792
12953
|
|
|
11793
|
-
/** Properties of a
|
|
11794
|
-
interface
|
|
11795
|
-
|
|
11796
|
-
/** ListReactionsRequest parent */
|
|
11797
|
-
parent?: (string|null);
|
|
12954
|
+
/** Properties of a ListCustomEmojisRequest. */
|
|
12955
|
+
interface IListCustomEmojisRequest {
|
|
11798
12956
|
|
|
11799
|
-
/**
|
|
12957
|
+
/** ListCustomEmojisRequest pageSize */
|
|
11800
12958
|
pageSize?: (number|null);
|
|
11801
12959
|
|
|
11802
|
-
/**
|
|
12960
|
+
/** ListCustomEmojisRequest pageToken */
|
|
11803
12961
|
pageToken?: (string|null);
|
|
11804
12962
|
|
|
11805
|
-
/**
|
|
12963
|
+
/** ListCustomEmojisRequest filter */
|
|
11806
12964
|
filter?: (string|null);
|
|
11807
12965
|
}
|
|
11808
12966
|
|
|
11809
|
-
/** Represents a
|
|
11810
|
-
class
|
|
12967
|
+
/** Represents a ListCustomEmojisRequest. */
|
|
12968
|
+
class ListCustomEmojisRequest implements IListCustomEmojisRequest {
|
|
11811
12969
|
|
|
11812
12970
|
/**
|
|
11813
|
-
* Constructs a new
|
|
12971
|
+
* Constructs a new ListCustomEmojisRequest.
|
|
11814
12972
|
* @param [properties] Properties to set
|
|
11815
12973
|
*/
|
|
11816
|
-
constructor(properties?: google.chat.v1.
|
|
11817
|
-
|
|
11818
|
-
/** ListReactionsRequest parent. */
|
|
11819
|
-
public parent: string;
|
|
12974
|
+
constructor(properties?: google.chat.v1.IListCustomEmojisRequest);
|
|
11820
12975
|
|
|
11821
|
-
/**
|
|
12976
|
+
/** ListCustomEmojisRequest pageSize. */
|
|
11822
12977
|
public pageSize: number;
|
|
11823
12978
|
|
|
11824
|
-
/**
|
|
12979
|
+
/** ListCustomEmojisRequest pageToken. */
|
|
11825
12980
|
public pageToken: string;
|
|
11826
12981
|
|
|
11827
|
-
/**
|
|
12982
|
+
/** ListCustomEmojisRequest filter. */
|
|
11828
12983
|
public filter: string;
|
|
11829
12984
|
|
|
11830
12985
|
/**
|
|
11831
|
-
* Creates a new
|
|
12986
|
+
* Creates a new ListCustomEmojisRequest instance using the specified properties.
|
|
11832
12987
|
* @param [properties] Properties to set
|
|
11833
|
-
* @returns
|
|
12988
|
+
* @returns ListCustomEmojisRequest instance
|
|
11834
12989
|
*/
|
|
11835
|
-
public static create(properties?: google.chat.v1.
|
|
12990
|
+
public static create(properties?: google.chat.v1.IListCustomEmojisRequest): google.chat.v1.ListCustomEmojisRequest;
|
|
11836
12991
|
|
|
11837
12992
|
/**
|
|
11838
|
-
* Encodes the specified
|
|
11839
|
-
* @param message
|
|
12993
|
+
* Encodes the specified ListCustomEmojisRequest message. Does not implicitly {@link google.chat.v1.ListCustomEmojisRequest.verify|verify} messages.
|
|
12994
|
+
* @param message ListCustomEmojisRequest message or plain object to encode
|
|
11840
12995
|
* @param [writer] Writer to encode to
|
|
11841
12996
|
* @returns Writer
|
|
11842
12997
|
*/
|
|
11843
|
-
public static encode(message: google.chat.v1.
|
|
12998
|
+
public static encode(message: google.chat.v1.IListCustomEmojisRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11844
12999
|
|
|
11845
13000
|
/**
|
|
11846
|
-
* Encodes the specified
|
|
11847
|
-
* @param message
|
|
13001
|
+
* Encodes the specified ListCustomEmojisRequest message, length delimited. Does not implicitly {@link google.chat.v1.ListCustomEmojisRequest.verify|verify} messages.
|
|
13002
|
+
* @param message ListCustomEmojisRequest message or plain object to encode
|
|
11848
13003
|
* @param [writer] Writer to encode to
|
|
11849
13004
|
* @returns Writer
|
|
11850
13005
|
*/
|
|
11851
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
13006
|
+
public static encodeDelimited(message: google.chat.v1.IListCustomEmojisRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11852
13007
|
|
|
11853
13008
|
/**
|
|
11854
|
-
* Decodes a
|
|
13009
|
+
* Decodes a ListCustomEmojisRequest message from the specified reader or buffer.
|
|
11855
13010
|
* @param reader Reader or buffer to decode from
|
|
11856
13011
|
* @param [length] Message length if known beforehand
|
|
11857
|
-
* @returns
|
|
13012
|
+
* @returns ListCustomEmojisRequest
|
|
11858
13013
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11859
13014
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11860
13015
|
*/
|
|
11861
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
13016
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ListCustomEmojisRequest;
|
|
11862
13017
|
|
|
11863
13018
|
/**
|
|
11864
|
-
* Decodes a
|
|
13019
|
+
* Decodes a ListCustomEmojisRequest message from the specified reader or buffer, length delimited.
|
|
11865
13020
|
* @param reader Reader or buffer to decode from
|
|
11866
|
-
* @returns
|
|
13021
|
+
* @returns ListCustomEmojisRequest
|
|
11867
13022
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11868
13023
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11869
13024
|
*/
|
|
11870
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
13025
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ListCustomEmojisRequest;
|
|
11871
13026
|
|
|
11872
13027
|
/**
|
|
11873
|
-
* Verifies a
|
|
13028
|
+
* Verifies a ListCustomEmojisRequest message.
|
|
11874
13029
|
* @param message Plain object to verify
|
|
11875
13030
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11876
13031
|
*/
|
|
11877
13032
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11878
13033
|
|
|
11879
13034
|
/**
|
|
11880
|
-
* Creates a
|
|
13035
|
+
* Creates a ListCustomEmojisRequest message from a plain object. Also converts values to their respective internal types.
|
|
11881
13036
|
* @param object Plain object
|
|
11882
|
-
* @returns
|
|
13037
|
+
* @returns ListCustomEmojisRequest
|
|
11883
13038
|
*/
|
|
11884
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
13039
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.ListCustomEmojisRequest;
|
|
11885
13040
|
|
|
11886
13041
|
/**
|
|
11887
|
-
* Creates a plain object from a
|
|
11888
|
-
* @param message
|
|
13042
|
+
* Creates a plain object from a ListCustomEmojisRequest message. Also converts values to other types if specified.
|
|
13043
|
+
* @param message ListCustomEmojisRequest
|
|
11889
13044
|
* @param [options] Conversion options
|
|
11890
13045
|
* @returns Plain object
|
|
11891
13046
|
*/
|
|
11892
|
-
public static toObject(message: google.chat.v1.
|
|
13047
|
+
public static toObject(message: google.chat.v1.ListCustomEmojisRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11893
13048
|
|
|
11894
13049
|
/**
|
|
11895
|
-
* Converts this
|
|
13050
|
+
* Converts this ListCustomEmojisRequest to JSON.
|
|
11896
13051
|
* @returns JSON object
|
|
11897
13052
|
*/
|
|
11898
13053
|
public toJSON(): { [k: string]: any };
|
|
11899
13054
|
|
|
11900
13055
|
/**
|
|
11901
|
-
* Gets the default type url for
|
|
13056
|
+
* Gets the default type url for ListCustomEmojisRequest
|
|
11902
13057
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11903
13058
|
* @returns The default type url
|
|
11904
13059
|
*/
|
|
11905
13060
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11906
13061
|
}
|
|
11907
13062
|
|
|
11908
|
-
/** Properties of a
|
|
11909
|
-
interface
|
|
13063
|
+
/** Properties of a ListCustomEmojisResponse. */
|
|
13064
|
+
interface IListCustomEmojisResponse {
|
|
11910
13065
|
|
|
11911
|
-
/**
|
|
11912
|
-
|
|
13066
|
+
/** ListCustomEmojisResponse customEmojis */
|
|
13067
|
+
customEmojis?: (google.chat.v1.ICustomEmoji[]|null);
|
|
11913
13068
|
|
|
11914
|
-
/**
|
|
13069
|
+
/** ListCustomEmojisResponse nextPageToken */
|
|
11915
13070
|
nextPageToken?: (string|null);
|
|
11916
13071
|
}
|
|
11917
13072
|
|
|
11918
|
-
/** Represents a
|
|
11919
|
-
class
|
|
13073
|
+
/** Represents a ListCustomEmojisResponse. */
|
|
13074
|
+
class ListCustomEmojisResponse implements IListCustomEmojisResponse {
|
|
11920
13075
|
|
|
11921
13076
|
/**
|
|
11922
|
-
* Constructs a new
|
|
13077
|
+
* Constructs a new ListCustomEmojisResponse.
|
|
11923
13078
|
* @param [properties] Properties to set
|
|
11924
13079
|
*/
|
|
11925
|
-
constructor(properties?: google.chat.v1.
|
|
13080
|
+
constructor(properties?: google.chat.v1.IListCustomEmojisResponse);
|
|
11926
13081
|
|
|
11927
|
-
/**
|
|
11928
|
-
public
|
|
13082
|
+
/** ListCustomEmojisResponse customEmojis. */
|
|
13083
|
+
public customEmojis: google.chat.v1.ICustomEmoji[];
|
|
11929
13084
|
|
|
11930
|
-
/**
|
|
13085
|
+
/** ListCustomEmojisResponse nextPageToken. */
|
|
11931
13086
|
public nextPageToken: string;
|
|
11932
13087
|
|
|
11933
13088
|
/**
|
|
11934
|
-
* Creates a new
|
|
13089
|
+
* Creates a new ListCustomEmojisResponse instance using the specified properties.
|
|
11935
13090
|
* @param [properties] Properties to set
|
|
11936
|
-
* @returns
|
|
13091
|
+
* @returns ListCustomEmojisResponse instance
|
|
11937
13092
|
*/
|
|
11938
|
-
public static create(properties?: google.chat.v1.
|
|
13093
|
+
public static create(properties?: google.chat.v1.IListCustomEmojisResponse): google.chat.v1.ListCustomEmojisResponse;
|
|
11939
13094
|
|
|
11940
13095
|
/**
|
|
11941
|
-
* Encodes the specified
|
|
11942
|
-
* @param message
|
|
13096
|
+
* Encodes the specified ListCustomEmojisResponse message. Does not implicitly {@link google.chat.v1.ListCustomEmojisResponse.verify|verify} messages.
|
|
13097
|
+
* @param message ListCustomEmojisResponse message or plain object to encode
|
|
11943
13098
|
* @param [writer] Writer to encode to
|
|
11944
13099
|
* @returns Writer
|
|
11945
13100
|
*/
|
|
11946
|
-
public static encode(message: google.chat.v1.
|
|
13101
|
+
public static encode(message: google.chat.v1.IListCustomEmojisResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11947
13102
|
|
|
11948
13103
|
/**
|
|
11949
|
-
* Encodes the specified
|
|
11950
|
-
* @param message
|
|
13104
|
+
* Encodes the specified ListCustomEmojisResponse message, length delimited. Does not implicitly {@link google.chat.v1.ListCustomEmojisResponse.verify|verify} messages.
|
|
13105
|
+
* @param message ListCustomEmojisResponse message or plain object to encode
|
|
11951
13106
|
* @param [writer] Writer to encode to
|
|
11952
13107
|
* @returns Writer
|
|
11953
13108
|
*/
|
|
11954
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
13109
|
+
public static encodeDelimited(message: google.chat.v1.IListCustomEmojisResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
11955
13110
|
|
|
11956
13111
|
/**
|
|
11957
|
-
* Decodes a
|
|
13112
|
+
* Decodes a ListCustomEmojisResponse message from the specified reader or buffer.
|
|
11958
13113
|
* @param reader Reader or buffer to decode from
|
|
11959
13114
|
* @param [length] Message length if known beforehand
|
|
11960
|
-
* @returns
|
|
13115
|
+
* @returns ListCustomEmojisResponse
|
|
11961
13116
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11962
13117
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11963
13118
|
*/
|
|
11964
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
13119
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.ListCustomEmojisResponse;
|
|
11965
13120
|
|
|
11966
13121
|
/**
|
|
11967
|
-
* Decodes a
|
|
13122
|
+
* Decodes a ListCustomEmojisResponse message from the specified reader or buffer, length delimited.
|
|
11968
13123
|
* @param reader Reader or buffer to decode from
|
|
11969
|
-
* @returns
|
|
13124
|
+
* @returns ListCustomEmojisResponse
|
|
11970
13125
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11971
13126
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11972
13127
|
*/
|
|
11973
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
13128
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.ListCustomEmojisResponse;
|
|
11974
13129
|
|
|
11975
13130
|
/**
|
|
11976
|
-
* Verifies a
|
|
13131
|
+
* Verifies a ListCustomEmojisResponse message.
|
|
11977
13132
|
* @param message Plain object to verify
|
|
11978
13133
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
11979
13134
|
*/
|
|
11980
13135
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
11981
13136
|
|
|
11982
13137
|
/**
|
|
11983
|
-
* Creates a
|
|
13138
|
+
* Creates a ListCustomEmojisResponse message from a plain object. Also converts values to their respective internal types.
|
|
11984
13139
|
* @param object Plain object
|
|
11985
|
-
* @returns
|
|
13140
|
+
* @returns ListCustomEmojisResponse
|
|
11986
13141
|
*/
|
|
11987
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
13142
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.ListCustomEmojisResponse;
|
|
11988
13143
|
|
|
11989
13144
|
/**
|
|
11990
|
-
* Creates a plain object from a
|
|
11991
|
-
* @param message
|
|
13145
|
+
* Creates a plain object from a ListCustomEmojisResponse message. Also converts values to other types if specified.
|
|
13146
|
+
* @param message ListCustomEmojisResponse
|
|
11992
13147
|
* @param [options] Conversion options
|
|
11993
13148
|
* @returns Plain object
|
|
11994
13149
|
*/
|
|
11995
|
-
public static toObject(message: google.chat.v1.
|
|
13150
|
+
public static toObject(message: google.chat.v1.ListCustomEmojisResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11996
13151
|
|
|
11997
13152
|
/**
|
|
11998
|
-
* Converts this
|
|
13153
|
+
* Converts this ListCustomEmojisResponse to JSON.
|
|
11999
13154
|
* @returns JSON object
|
|
12000
13155
|
*/
|
|
12001
13156
|
public toJSON(): { [k: string]: any };
|
|
12002
13157
|
|
|
12003
13158
|
/**
|
|
12004
|
-
* Gets the default type url for
|
|
13159
|
+
* Gets the default type url for ListCustomEmojisResponse
|
|
12005
13160
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12006
13161
|
* @returns The default type url
|
|
12007
13162
|
*/
|
|
12008
13163
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
12009
13164
|
}
|
|
12010
13165
|
|
|
12011
|
-
/** Properties of a
|
|
12012
|
-
interface
|
|
13166
|
+
/** Properties of a DeleteCustomEmojiRequest. */
|
|
13167
|
+
interface IDeleteCustomEmojiRequest {
|
|
12013
13168
|
|
|
12014
|
-
/**
|
|
13169
|
+
/** DeleteCustomEmojiRequest name */
|
|
12015
13170
|
name?: (string|null);
|
|
12016
13171
|
}
|
|
12017
13172
|
|
|
12018
|
-
/** Represents a
|
|
12019
|
-
class
|
|
13173
|
+
/** Represents a DeleteCustomEmojiRequest. */
|
|
13174
|
+
class DeleteCustomEmojiRequest implements IDeleteCustomEmojiRequest {
|
|
12020
13175
|
|
|
12021
13176
|
/**
|
|
12022
|
-
* Constructs a new
|
|
13177
|
+
* Constructs a new DeleteCustomEmojiRequest.
|
|
12023
13178
|
* @param [properties] Properties to set
|
|
12024
13179
|
*/
|
|
12025
|
-
constructor(properties?: google.chat.v1.
|
|
13180
|
+
constructor(properties?: google.chat.v1.IDeleteCustomEmojiRequest);
|
|
12026
13181
|
|
|
12027
|
-
/**
|
|
13182
|
+
/** DeleteCustomEmojiRequest name. */
|
|
12028
13183
|
public name: string;
|
|
12029
13184
|
|
|
12030
13185
|
/**
|
|
12031
|
-
* Creates a new
|
|
13186
|
+
* Creates a new DeleteCustomEmojiRequest instance using the specified properties.
|
|
12032
13187
|
* @param [properties] Properties to set
|
|
12033
|
-
* @returns
|
|
13188
|
+
* @returns DeleteCustomEmojiRequest instance
|
|
12034
13189
|
*/
|
|
12035
|
-
public static create(properties?: google.chat.v1.
|
|
13190
|
+
public static create(properties?: google.chat.v1.IDeleteCustomEmojiRequest): google.chat.v1.DeleteCustomEmojiRequest;
|
|
12036
13191
|
|
|
12037
13192
|
/**
|
|
12038
|
-
* Encodes the specified
|
|
12039
|
-
* @param message
|
|
13193
|
+
* Encodes the specified DeleteCustomEmojiRequest message. Does not implicitly {@link google.chat.v1.DeleteCustomEmojiRequest.verify|verify} messages.
|
|
13194
|
+
* @param message DeleteCustomEmojiRequest message or plain object to encode
|
|
12040
13195
|
* @param [writer] Writer to encode to
|
|
12041
13196
|
* @returns Writer
|
|
12042
13197
|
*/
|
|
12043
|
-
public static encode(message: google.chat.v1.
|
|
13198
|
+
public static encode(message: google.chat.v1.IDeleteCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12044
13199
|
|
|
12045
13200
|
/**
|
|
12046
|
-
* Encodes the specified
|
|
12047
|
-
* @param message
|
|
13201
|
+
* Encodes the specified DeleteCustomEmojiRequest message, length delimited. Does not implicitly {@link google.chat.v1.DeleteCustomEmojiRequest.verify|verify} messages.
|
|
13202
|
+
* @param message DeleteCustomEmojiRequest message or plain object to encode
|
|
12048
13203
|
* @param [writer] Writer to encode to
|
|
12049
13204
|
* @returns Writer
|
|
12050
13205
|
*/
|
|
12051
|
-
public static encodeDelimited(message: google.chat.v1.
|
|
13206
|
+
public static encodeDelimited(message: google.chat.v1.IDeleteCustomEmojiRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
12052
13207
|
|
|
12053
13208
|
/**
|
|
12054
|
-
* Decodes a
|
|
13209
|
+
* Decodes a DeleteCustomEmojiRequest message from the specified reader or buffer.
|
|
12055
13210
|
* @param reader Reader or buffer to decode from
|
|
12056
13211
|
* @param [length] Message length if known beforehand
|
|
12057
|
-
* @returns
|
|
13212
|
+
* @returns DeleteCustomEmojiRequest
|
|
12058
13213
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12059
13214
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12060
13215
|
*/
|
|
12061
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.
|
|
13216
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.chat.v1.DeleteCustomEmojiRequest;
|
|
12062
13217
|
|
|
12063
13218
|
/**
|
|
12064
|
-
* Decodes a
|
|
13219
|
+
* Decodes a DeleteCustomEmojiRequest message from the specified reader or buffer, length delimited.
|
|
12065
13220
|
* @param reader Reader or buffer to decode from
|
|
12066
|
-
* @returns
|
|
13221
|
+
* @returns DeleteCustomEmojiRequest
|
|
12067
13222
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
12068
13223
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
12069
13224
|
*/
|
|
12070
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.
|
|
13225
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.chat.v1.DeleteCustomEmojiRequest;
|
|
12071
13226
|
|
|
12072
13227
|
/**
|
|
12073
|
-
* Verifies a
|
|
13228
|
+
* Verifies a DeleteCustomEmojiRequest message.
|
|
12074
13229
|
* @param message Plain object to verify
|
|
12075
13230
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
12076
13231
|
*/
|
|
12077
13232
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
12078
13233
|
|
|
12079
13234
|
/**
|
|
12080
|
-
* Creates a
|
|
13235
|
+
* Creates a DeleteCustomEmojiRequest message from a plain object. Also converts values to their respective internal types.
|
|
12081
13236
|
* @param object Plain object
|
|
12082
|
-
* @returns
|
|
13237
|
+
* @returns DeleteCustomEmojiRequest
|
|
12083
13238
|
*/
|
|
12084
|
-
public static fromObject(object: { [k: string]: any }): google.chat.v1.
|
|
13239
|
+
public static fromObject(object: { [k: string]: any }): google.chat.v1.DeleteCustomEmojiRequest;
|
|
12085
13240
|
|
|
12086
13241
|
/**
|
|
12087
|
-
* Creates a plain object from a
|
|
12088
|
-
* @param message
|
|
13242
|
+
* Creates a plain object from a DeleteCustomEmojiRequest message. Also converts values to other types if specified.
|
|
13243
|
+
* @param message DeleteCustomEmojiRequest
|
|
12089
13244
|
* @param [options] Conversion options
|
|
12090
13245
|
* @returns Plain object
|
|
12091
13246
|
*/
|
|
12092
|
-
public static toObject(message: google.chat.v1.
|
|
13247
|
+
public static toObject(message: google.chat.v1.DeleteCustomEmojiRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
12093
13248
|
|
|
12094
13249
|
/**
|
|
12095
|
-
* Converts this
|
|
13250
|
+
* Converts this DeleteCustomEmojiRequest to JSON.
|
|
12096
13251
|
* @returns JSON object
|
|
12097
13252
|
*/
|
|
12098
13253
|
public toJSON(): { [k: string]: any };
|
|
12099
13254
|
|
|
12100
13255
|
/**
|
|
12101
|
-
* Gets the default type url for
|
|
13256
|
+
* Gets the default type url for DeleteCustomEmojiRequest
|
|
12102
13257
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
12103
13258
|
* @returns The default type url
|
|
12104
13259
|
*/
|
|
@@ -12592,6 +13747,62 @@ export namespace google {
|
|
|
12592
13747
|
*/
|
|
12593
13748
|
public deleteReaction(request: google.chat.v1.IDeleteReactionRequest): Promise<google.protobuf.Empty>;
|
|
12594
13749
|
|
|
13750
|
+
/**
|
|
13751
|
+
* Calls CreateCustomEmoji.
|
|
13752
|
+
* @param request CreateCustomEmojiRequest message or plain object
|
|
13753
|
+
* @param callback Node-style callback called with the error, if any, and CustomEmoji
|
|
13754
|
+
*/
|
|
13755
|
+
public createCustomEmoji(request: google.chat.v1.ICreateCustomEmojiRequest, callback: google.chat.v1.ChatService.CreateCustomEmojiCallback): void;
|
|
13756
|
+
|
|
13757
|
+
/**
|
|
13758
|
+
* Calls CreateCustomEmoji.
|
|
13759
|
+
* @param request CreateCustomEmojiRequest message or plain object
|
|
13760
|
+
* @returns Promise
|
|
13761
|
+
*/
|
|
13762
|
+
public createCustomEmoji(request: google.chat.v1.ICreateCustomEmojiRequest): Promise<google.chat.v1.CustomEmoji>;
|
|
13763
|
+
|
|
13764
|
+
/**
|
|
13765
|
+
* Calls GetCustomEmoji.
|
|
13766
|
+
* @param request GetCustomEmojiRequest message or plain object
|
|
13767
|
+
* @param callback Node-style callback called with the error, if any, and CustomEmoji
|
|
13768
|
+
*/
|
|
13769
|
+
public getCustomEmoji(request: google.chat.v1.IGetCustomEmojiRequest, callback: google.chat.v1.ChatService.GetCustomEmojiCallback): void;
|
|
13770
|
+
|
|
13771
|
+
/**
|
|
13772
|
+
* Calls GetCustomEmoji.
|
|
13773
|
+
* @param request GetCustomEmojiRequest message or plain object
|
|
13774
|
+
* @returns Promise
|
|
13775
|
+
*/
|
|
13776
|
+
public getCustomEmoji(request: google.chat.v1.IGetCustomEmojiRequest): Promise<google.chat.v1.CustomEmoji>;
|
|
13777
|
+
|
|
13778
|
+
/**
|
|
13779
|
+
* Calls ListCustomEmojis.
|
|
13780
|
+
* @param request ListCustomEmojisRequest message or plain object
|
|
13781
|
+
* @param callback Node-style callback called with the error, if any, and ListCustomEmojisResponse
|
|
13782
|
+
*/
|
|
13783
|
+
public listCustomEmojis(request: google.chat.v1.IListCustomEmojisRequest, callback: google.chat.v1.ChatService.ListCustomEmojisCallback): void;
|
|
13784
|
+
|
|
13785
|
+
/**
|
|
13786
|
+
* Calls ListCustomEmojis.
|
|
13787
|
+
* @param request ListCustomEmojisRequest message or plain object
|
|
13788
|
+
* @returns Promise
|
|
13789
|
+
*/
|
|
13790
|
+
public listCustomEmojis(request: google.chat.v1.IListCustomEmojisRequest): Promise<google.chat.v1.ListCustomEmojisResponse>;
|
|
13791
|
+
|
|
13792
|
+
/**
|
|
13793
|
+
* Calls DeleteCustomEmoji.
|
|
13794
|
+
* @param request DeleteCustomEmojiRequest message or plain object
|
|
13795
|
+
* @param callback Node-style callback called with the error, if any, and Empty
|
|
13796
|
+
*/
|
|
13797
|
+
public deleteCustomEmoji(request: google.chat.v1.IDeleteCustomEmojiRequest, callback: google.chat.v1.ChatService.DeleteCustomEmojiCallback): void;
|
|
13798
|
+
|
|
13799
|
+
/**
|
|
13800
|
+
* Calls DeleteCustomEmoji.
|
|
13801
|
+
* @param request DeleteCustomEmojiRequest message or plain object
|
|
13802
|
+
* @returns Promise
|
|
13803
|
+
*/
|
|
13804
|
+
public deleteCustomEmoji(request: google.chat.v1.IDeleteCustomEmojiRequest): Promise<google.protobuf.Empty>;
|
|
13805
|
+
|
|
12595
13806
|
/**
|
|
12596
13807
|
* Calls GetSpaceReadState.
|
|
12597
13808
|
* @param request GetSpaceReadStateRequest message or plain object
|
|
@@ -12838,28 +14049,56 @@ export namespace google {
|
|
|
12838
14049
|
* @param error Error, if any
|
|
12839
14050
|
* @param [response] Membership
|
|
12840
14051
|
*/
|
|
12841
|
-
type DeleteMembershipCallback = (error: (Error|null), response?: google.chat.v1.Membership) => void;
|
|
14052
|
+
type DeleteMembershipCallback = (error: (Error|null), response?: google.chat.v1.Membership) => void;
|
|
14053
|
+
|
|
14054
|
+
/**
|
|
14055
|
+
* Callback as used by {@link google.chat.v1.ChatService|createReaction}.
|
|
14056
|
+
* @param error Error, if any
|
|
14057
|
+
* @param [response] Reaction
|
|
14058
|
+
*/
|
|
14059
|
+
type CreateReactionCallback = (error: (Error|null), response?: google.chat.v1.Reaction) => void;
|
|
14060
|
+
|
|
14061
|
+
/**
|
|
14062
|
+
* Callback as used by {@link google.chat.v1.ChatService|listReactions}.
|
|
14063
|
+
* @param error Error, if any
|
|
14064
|
+
* @param [response] ListReactionsResponse
|
|
14065
|
+
*/
|
|
14066
|
+
type ListReactionsCallback = (error: (Error|null), response?: google.chat.v1.ListReactionsResponse) => void;
|
|
14067
|
+
|
|
14068
|
+
/**
|
|
14069
|
+
* Callback as used by {@link google.chat.v1.ChatService|deleteReaction}.
|
|
14070
|
+
* @param error Error, if any
|
|
14071
|
+
* @param [response] Empty
|
|
14072
|
+
*/
|
|
14073
|
+
type DeleteReactionCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
|
|
14074
|
+
|
|
14075
|
+
/**
|
|
14076
|
+
* Callback as used by {@link google.chat.v1.ChatService|createCustomEmoji}.
|
|
14077
|
+
* @param error Error, if any
|
|
14078
|
+
* @param [response] CustomEmoji
|
|
14079
|
+
*/
|
|
14080
|
+
type CreateCustomEmojiCallback = (error: (Error|null), response?: google.chat.v1.CustomEmoji) => void;
|
|
12842
14081
|
|
|
12843
14082
|
/**
|
|
12844
|
-
* Callback as used by {@link google.chat.v1.ChatService|
|
|
14083
|
+
* Callback as used by {@link google.chat.v1.ChatService|getCustomEmoji}.
|
|
12845
14084
|
* @param error Error, if any
|
|
12846
|
-
* @param [response]
|
|
14085
|
+
* @param [response] CustomEmoji
|
|
12847
14086
|
*/
|
|
12848
|
-
type
|
|
14087
|
+
type GetCustomEmojiCallback = (error: (Error|null), response?: google.chat.v1.CustomEmoji) => void;
|
|
12849
14088
|
|
|
12850
14089
|
/**
|
|
12851
|
-
* Callback as used by {@link google.chat.v1.ChatService|
|
|
14090
|
+
* Callback as used by {@link google.chat.v1.ChatService|listCustomEmojis}.
|
|
12852
14091
|
* @param error Error, if any
|
|
12853
|
-
* @param [response]
|
|
14092
|
+
* @param [response] ListCustomEmojisResponse
|
|
12854
14093
|
*/
|
|
12855
|
-
type
|
|
14094
|
+
type ListCustomEmojisCallback = (error: (Error|null), response?: google.chat.v1.ListCustomEmojisResponse) => void;
|
|
12856
14095
|
|
|
12857
14096
|
/**
|
|
12858
|
-
* Callback as used by {@link google.chat.v1.ChatService|
|
|
14097
|
+
* Callback as used by {@link google.chat.v1.ChatService|deleteCustomEmoji}.
|
|
12859
14098
|
* @param error Error, if any
|
|
12860
14099
|
* @param [response] Empty
|
|
12861
14100
|
*/
|
|
12862
|
-
type
|
|
14101
|
+
type DeleteCustomEmojiCallback = (error: (Error|null), response?: google.protobuf.Empty) => void;
|
|
12863
14102
|
|
|
12864
14103
|
/**
|
|
12865
14104
|
* Callback as used by {@link google.chat.v1.ChatService|getSpaceReadState}.
|
|
@@ -18507,30 +19746,6 @@ export namespace google {
|
|
|
18507
19746
|
/** PermissionSettings replyMessages. */
|
|
18508
19747
|
public replyMessages?: (google.chat.v1.Space.IPermissionSetting|null);
|
|
18509
19748
|
|
|
18510
|
-
/** PermissionSettings _manageMembersAndGroups. */
|
|
18511
|
-
public _manageMembersAndGroups?: "manageMembersAndGroups";
|
|
18512
|
-
|
|
18513
|
-
/** PermissionSettings _modifySpaceDetails. */
|
|
18514
|
-
public _modifySpaceDetails?: "modifySpaceDetails";
|
|
18515
|
-
|
|
18516
|
-
/** PermissionSettings _toggleHistory. */
|
|
18517
|
-
public _toggleHistory?: "toggleHistory";
|
|
18518
|
-
|
|
18519
|
-
/** PermissionSettings _useAtMentionAll. */
|
|
18520
|
-
public _useAtMentionAll?: "useAtMentionAll";
|
|
18521
|
-
|
|
18522
|
-
/** PermissionSettings _manageApps. */
|
|
18523
|
-
public _manageApps?: "manageApps";
|
|
18524
|
-
|
|
18525
|
-
/** PermissionSettings _manageWebhooks. */
|
|
18526
|
-
public _manageWebhooks?: "manageWebhooks";
|
|
18527
|
-
|
|
18528
|
-
/** PermissionSettings _postMessages. */
|
|
18529
|
-
public _postMessages?: "postMessages";
|
|
18530
|
-
|
|
18531
|
-
/** PermissionSettings _replyMessages. */
|
|
18532
|
-
public _replyMessages?: "replyMessages";
|
|
18533
|
-
|
|
18534
19749
|
/**
|
|
18535
19750
|
* Creates a new PermissionSettings instance using the specified properties.
|
|
18536
19751
|
* @param [properties] Properties to set
|
|
@@ -22183,12 +23398,6 @@ export namespace google {
|
|
|
22183
23398
|
/** SpaceNotificationSetting muteSetting. */
|
|
22184
23399
|
public muteSetting?: (google.chat.v1.SpaceNotificationSetting.MuteSetting|keyof typeof google.chat.v1.SpaceNotificationSetting.MuteSetting|null);
|
|
22185
23400
|
|
|
22186
|
-
/** SpaceNotificationSetting _notificationSetting. */
|
|
22187
|
-
public _notificationSetting?: "notificationSetting";
|
|
22188
|
-
|
|
22189
|
-
/** SpaceNotificationSetting _muteSetting. */
|
|
22190
|
-
public _muteSetting?: "muteSetting";
|
|
22191
|
-
|
|
22192
23401
|
/**
|
|
22193
23402
|
* Creates a new SpaceNotificationSetting instance using the specified properties.
|
|
22194
23403
|
* @param [properties] Properties to set
|
|
@@ -23128,6 +24337,19 @@ export namespace google {
|
|
|
23128
24337
|
/** Namespace api. */
|
|
23129
24338
|
namespace api {
|
|
23130
24339
|
|
|
24340
|
+
/** FieldBehavior enum. */
|
|
24341
|
+
enum FieldBehavior {
|
|
24342
|
+
FIELD_BEHAVIOR_UNSPECIFIED = 0,
|
|
24343
|
+
OPTIONAL = 1,
|
|
24344
|
+
REQUIRED = 2,
|
|
24345
|
+
OUTPUT_ONLY = 3,
|
|
24346
|
+
INPUT_ONLY = 4,
|
|
24347
|
+
IMMUTABLE = 5,
|
|
24348
|
+
UNORDERED_LIST = 6,
|
|
24349
|
+
NON_EMPTY_DEFAULT = 7,
|
|
24350
|
+
IDENTIFIER = 8
|
|
24351
|
+
}
|
|
24352
|
+
|
|
23131
24353
|
/** Properties of a ResourceDescriptor. */
|
|
23132
24354
|
interface IResourceDescriptor {
|
|
23133
24355
|
|
|
@@ -23380,24 +24602,14 @@ export namespace google {
|
|
|
23380
24602
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
23381
24603
|
}
|
|
23382
24604
|
|
|
23383
|
-
/** FieldBehavior enum. */
|
|
23384
|
-
enum FieldBehavior {
|
|
23385
|
-
FIELD_BEHAVIOR_UNSPECIFIED = 0,
|
|
23386
|
-
OPTIONAL = 1,
|
|
23387
|
-
REQUIRED = 2,
|
|
23388
|
-
OUTPUT_ONLY = 3,
|
|
23389
|
-
INPUT_ONLY = 4,
|
|
23390
|
-
IMMUTABLE = 5,
|
|
23391
|
-
UNORDERED_LIST = 6,
|
|
23392
|
-
NON_EMPTY_DEFAULT = 7,
|
|
23393
|
-
IDENTIFIER = 8
|
|
23394
|
-
}
|
|
23395
|
-
|
|
23396
24605
|
/** Properties of a FieldInfo. */
|
|
23397
24606
|
interface IFieldInfo {
|
|
23398
24607
|
|
|
23399
24608
|
/** FieldInfo format */
|
|
23400
24609
|
format?: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format|null);
|
|
24610
|
+
|
|
24611
|
+
/** FieldInfo referencedTypes */
|
|
24612
|
+
referencedTypes?: (google.api.ITypeReference[]|null);
|
|
23401
24613
|
}
|
|
23402
24614
|
|
|
23403
24615
|
/** Represents a FieldInfo. */
|
|
@@ -23412,6 +24624,9 @@ export namespace google {
|
|
|
23412
24624
|
/** FieldInfo format. */
|
|
23413
24625
|
public format: (google.api.FieldInfo.Format|keyof typeof google.api.FieldInfo.Format);
|
|
23414
24626
|
|
|
24627
|
+
/** FieldInfo referencedTypes. */
|
|
24628
|
+
public referencedTypes: google.api.ITypeReference[];
|
|
24629
|
+
|
|
23415
24630
|
/**
|
|
23416
24631
|
* Creates a new FieldInfo instance using the specified properties.
|
|
23417
24632
|
* @param [properties] Properties to set
|
|
@@ -23502,6 +24717,103 @@ export namespace google {
|
|
|
23502
24717
|
}
|
|
23503
24718
|
}
|
|
23504
24719
|
|
|
24720
|
+
/** Properties of a TypeReference. */
|
|
24721
|
+
interface ITypeReference {
|
|
24722
|
+
|
|
24723
|
+
/** TypeReference typeName */
|
|
24724
|
+
typeName?: (string|null);
|
|
24725
|
+
}
|
|
24726
|
+
|
|
24727
|
+
/** Represents a TypeReference. */
|
|
24728
|
+
class TypeReference implements ITypeReference {
|
|
24729
|
+
|
|
24730
|
+
/**
|
|
24731
|
+
* Constructs a new TypeReference.
|
|
24732
|
+
* @param [properties] Properties to set
|
|
24733
|
+
*/
|
|
24734
|
+
constructor(properties?: google.api.ITypeReference);
|
|
24735
|
+
|
|
24736
|
+
/** TypeReference typeName. */
|
|
24737
|
+
public typeName: string;
|
|
24738
|
+
|
|
24739
|
+
/**
|
|
24740
|
+
* Creates a new TypeReference instance using the specified properties.
|
|
24741
|
+
* @param [properties] Properties to set
|
|
24742
|
+
* @returns TypeReference instance
|
|
24743
|
+
*/
|
|
24744
|
+
public static create(properties?: google.api.ITypeReference): google.api.TypeReference;
|
|
24745
|
+
|
|
24746
|
+
/**
|
|
24747
|
+
* Encodes the specified TypeReference message. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
|
|
24748
|
+
* @param message TypeReference message or plain object to encode
|
|
24749
|
+
* @param [writer] Writer to encode to
|
|
24750
|
+
* @returns Writer
|
|
24751
|
+
*/
|
|
24752
|
+
public static encode(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24753
|
+
|
|
24754
|
+
/**
|
|
24755
|
+
* Encodes the specified TypeReference message, length delimited. Does not implicitly {@link google.api.TypeReference.verify|verify} messages.
|
|
24756
|
+
* @param message TypeReference message or plain object to encode
|
|
24757
|
+
* @param [writer] Writer to encode to
|
|
24758
|
+
* @returns Writer
|
|
24759
|
+
*/
|
|
24760
|
+
public static encodeDelimited(message: google.api.ITypeReference, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
24761
|
+
|
|
24762
|
+
/**
|
|
24763
|
+
* Decodes a TypeReference message from the specified reader or buffer.
|
|
24764
|
+
* @param reader Reader or buffer to decode from
|
|
24765
|
+
* @param [length] Message length if known beforehand
|
|
24766
|
+
* @returns TypeReference
|
|
24767
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24768
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24769
|
+
*/
|
|
24770
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.TypeReference;
|
|
24771
|
+
|
|
24772
|
+
/**
|
|
24773
|
+
* Decodes a TypeReference message from the specified reader or buffer, length delimited.
|
|
24774
|
+
* @param reader Reader or buffer to decode from
|
|
24775
|
+
* @returns TypeReference
|
|
24776
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
24777
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
24778
|
+
*/
|
|
24779
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.TypeReference;
|
|
24780
|
+
|
|
24781
|
+
/**
|
|
24782
|
+
* Verifies a TypeReference message.
|
|
24783
|
+
* @param message Plain object to verify
|
|
24784
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
24785
|
+
*/
|
|
24786
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
24787
|
+
|
|
24788
|
+
/**
|
|
24789
|
+
* Creates a TypeReference message from a plain object. Also converts values to their respective internal types.
|
|
24790
|
+
* @param object Plain object
|
|
24791
|
+
* @returns TypeReference
|
|
24792
|
+
*/
|
|
24793
|
+
public static fromObject(object: { [k: string]: any }): google.api.TypeReference;
|
|
24794
|
+
|
|
24795
|
+
/**
|
|
24796
|
+
* Creates a plain object from a TypeReference message. Also converts values to other types if specified.
|
|
24797
|
+
* @param message TypeReference
|
|
24798
|
+
* @param [options] Conversion options
|
|
24799
|
+
* @returns Plain object
|
|
24800
|
+
*/
|
|
24801
|
+
public static toObject(message: google.api.TypeReference, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
24802
|
+
|
|
24803
|
+
/**
|
|
24804
|
+
* Converts this TypeReference to JSON.
|
|
24805
|
+
* @returns JSON object
|
|
24806
|
+
*/
|
|
24807
|
+
public toJSON(): { [k: string]: any };
|
|
24808
|
+
|
|
24809
|
+
/**
|
|
24810
|
+
* Gets the default type url for TypeReference
|
|
24811
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
24812
|
+
* @returns The default type url
|
|
24813
|
+
*/
|
|
24814
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24815
|
+
}
|
|
24816
|
+
|
|
23505
24817
|
/** Properties of a Http. */
|
|
23506
24818
|
interface IHttp {
|
|
23507
24819
|
|
|
@@ -23870,6 +25182,9 @@ export namespace google {
|
|
|
23870
25182
|
|
|
23871
25183
|
/** CommonLanguageSettings destinations */
|
|
23872
25184
|
destinations?: (google.api.ClientLibraryDestination[]|null);
|
|
25185
|
+
|
|
25186
|
+
/** CommonLanguageSettings selectiveGapicGeneration */
|
|
25187
|
+
selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
23873
25188
|
}
|
|
23874
25189
|
|
|
23875
25190
|
/** Represents a CommonLanguageSettings. */
|
|
@@ -23887,6 +25202,9 @@ export namespace google {
|
|
|
23887
25202
|
/** CommonLanguageSettings destinations. */
|
|
23888
25203
|
public destinations: google.api.ClientLibraryDestination[];
|
|
23889
25204
|
|
|
25205
|
+
/** CommonLanguageSettings selectiveGapicGeneration. */
|
|
25206
|
+
public selectiveGapicGeneration?: (google.api.ISelectiveGapicGeneration|null);
|
|
25207
|
+
|
|
23890
25208
|
/**
|
|
23891
25209
|
* Creates a new CommonLanguageSettings instance using the specified properties.
|
|
23892
25210
|
* @param [properties] Properties to set
|
|
@@ -24154,6 +25472,9 @@ export namespace google {
|
|
|
24154
25472
|
|
|
24155
25473
|
/** Publishing protoReferenceDocumentationUri */
|
|
24156
25474
|
protoReferenceDocumentationUri?: (string|null);
|
|
25475
|
+
|
|
25476
|
+
/** Publishing restReferenceDocumentationUri */
|
|
25477
|
+
restReferenceDocumentationUri?: (string|null);
|
|
24157
25478
|
}
|
|
24158
25479
|
|
|
24159
25480
|
/** Represents a Publishing. */
|
|
@@ -24195,6 +25516,9 @@ export namespace google {
|
|
|
24195
25516
|
/** Publishing protoReferenceDocumentationUri. */
|
|
24196
25517
|
public protoReferenceDocumentationUri: string;
|
|
24197
25518
|
|
|
25519
|
+
/** Publishing restReferenceDocumentationUri. */
|
|
25520
|
+
public restReferenceDocumentationUri: string;
|
|
25521
|
+
|
|
24198
25522
|
/**
|
|
24199
25523
|
* Creates a new Publishing instance using the specified properties.
|
|
24200
25524
|
* @param [properties] Properties to set
|
|
@@ -24581,6 +25905,9 @@ export namespace google {
|
|
|
24581
25905
|
|
|
24582
25906
|
/** PythonSettings common */
|
|
24583
25907
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
25908
|
+
|
|
25909
|
+
/** PythonSettings experimentalFeatures */
|
|
25910
|
+
experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
24584
25911
|
}
|
|
24585
25912
|
|
|
24586
25913
|
/** Represents a PythonSettings. */
|
|
@@ -24595,6 +25922,9 @@ export namespace google {
|
|
|
24595
25922
|
/** PythonSettings common. */
|
|
24596
25923
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
24597
25924
|
|
|
25925
|
+
/** PythonSettings experimentalFeatures. */
|
|
25926
|
+
public experimentalFeatures?: (google.api.PythonSettings.IExperimentalFeatures|null);
|
|
25927
|
+
|
|
24598
25928
|
/**
|
|
24599
25929
|
* Creates a new PythonSettings instance using the specified properties.
|
|
24600
25930
|
* @param [properties] Properties to set
|
|
@@ -24673,6 +26003,118 @@ export namespace google {
|
|
|
24673
26003
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
24674
26004
|
}
|
|
24675
26005
|
|
|
26006
|
+
namespace PythonSettings {
|
|
26007
|
+
|
|
26008
|
+
/** Properties of an ExperimentalFeatures. */
|
|
26009
|
+
interface IExperimentalFeatures {
|
|
26010
|
+
|
|
26011
|
+
/** ExperimentalFeatures restAsyncIoEnabled */
|
|
26012
|
+
restAsyncIoEnabled?: (boolean|null);
|
|
26013
|
+
|
|
26014
|
+
/** ExperimentalFeatures protobufPythonicTypesEnabled */
|
|
26015
|
+
protobufPythonicTypesEnabled?: (boolean|null);
|
|
26016
|
+
|
|
26017
|
+
/** ExperimentalFeatures unversionedPackageDisabled */
|
|
26018
|
+
unversionedPackageDisabled?: (boolean|null);
|
|
26019
|
+
}
|
|
26020
|
+
|
|
26021
|
+
/** Represents an ExperimentalFeatures. */
|
|
26022
|
+
class ExperimentalFeatures implements IExperimentalFeatures {
|
|
26023
|
+
|
|
26024
|
+
/**
|
|
26025
|
+
* Constructs a new ExperimentalFeatures.
|
|
26026
|
+
* @param [properties] Properties to set
|
|
26027
|
+
*/
|
|
26028
|
+
constructor(properties?: google.api.PythonSettings.IExperimentalFeatures);
|
|
26029
|
+
|
|
26030
|
+
/** ExperimentalFeatures restAsyncIoEnabled. */
|
|
26031
|
+
public restAsyncIoEnabled: boolean;
|
|
26032
|
+
|
|
26033
|
+
/** ExperimentalFeatures protobufPythonicTypesEnabled. */
|
|
26034
|
+
public protobufPythonicTypesEnabled: boolean;
|
|
26035
|
+
|
|
26036
|
+
/** ExperimentalFeatures unversionedPackageDisabled. */
|
|
26037
|
+
public unversionedPackageDisabled: boolean;
|
|
26038
|
+
|
|
26039
|
+
/**
|
|
26040
|
+
* Creates a new ExperimentalFeatures instance using the specified properties.
|
|
26041
|
+
* @param [properties] Properties to set
|
|
26042
|
+
* @returns ExperimentalFeatures instance
|
|
26043
|
+
*/
|
|
26044
|
+
public static create(properties?: google.api.PythonSettings.IExperimentalFeatures): google.api.PythonSettings.ExperimentalFeatures;
|
|
26045
|
+
|
|
26046
|
+
/**
|
|
26047
|
+
* Encodes the specified ExperimentalFeatures message. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
|
|
26048
|
+
* @param message ExperimentalFeatures message or plain object to encode
|
|
26049
|
+
* @param [writer] Writer to encode to
|
|
26050
|
+
* @returns Writer
|
|
26051
|
+
*/
|
|
26052
|
+
public static encode(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26053
|
+
|
|
26054
|
+
/**
|
|
26055
|
+
* Encodes the specified ExperimentalFeatures message, length delimited. Does not implicitly {@link google.api.PythonSettings.ExperimentalFeatures.verify|verify} messages.
|
|
26056
|
+
* @param message ExperimentalFeatures message or plain object to encode
|
|
26057
|
+
* @param [writer] Writer to encode to
|
|
26058
|
+
* @returns Writer
|
|
26059
|
+
*/
|
|
26060
|
+
public static encodeDelimited(message: google.api.PythonSettings.IExperimentalFeatures, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26061
|
+
|
|
26062
|
+
/**
|
|
26063
|
+
* Decodes an ExperimentalFeatures message from the specified reader or buffer.
|
|
26064
|
+
* @param reader Reader or buffer to decode from
|
|
26065
|
+
* @param [length] Message length if known beforehand
|
|
26066
|
+
* @returns ExperimentalFeatures
|
|
26067
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26068
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26069
|
+
*/
|
|
26070
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.PythonSettings.ExperimentalFeatures;
|
|
26071
|
+
|
|
26072
|
+
/**
|
|
26073
|
+
* Decodes an ExperimentalFeatures message from the specified reader or buffer, length delimited.
|
|
26074
|
+
* @param reader Reader or buffer to decode from
|
|
26075
|
+
* @returns ExperimentalFeatures
|
|
26076
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26077
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26078
|
+
*/
|
|
26079
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.PythonSettings.ExperimentalFeatures;
|
|
26080
|
+
|
|
26081
|
+
/**
|
|
26082
|
+
* Verifies an ExperimentalFeatures message.
|
|
26083
|
+
* @param message Plain object to verify
|
|
26084
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26085
|
+
*/
|
|
26086
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26087
|
+
|
|
26088
|
+
/**
|
|
26089
|
+
* Creates an ExperimentalFeatures message from a plain object. Also converts values to their respective internal types.
|
|
26090
|
+
* @param object Plain object
|
|
26091
|
+
* @returns ExperimentalFeatures
|
|
26092
|
+
*/
|
|
26093
|
+
public static fromObject(object: { [k: string]: any }): google.api.PythonSettings.ExperimentalFeatures;
|
|
26094
|
+
|
|
26095
|
+
/**
|
|
26096
|
+
* Creates a plain object from an ExperimentalFeatures message. Also converts values to other types if specified.
|
|
26097
|
+
* @param message ExperimentalFeatures
|
|
26098
|
+
* @param [options] Conversion options
|
|
26099
|
+
* @returns Plain object
|
|
26100
|
+
*/
|
|
26101
|
+
public static toObject(message: google.api.PythonSettings.ExperimentalFeatures, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26102
|
+
|
|
26103
|
+
/**
|
|
26104
|
+
* Converts this ExperimentalFeatures to JSON.
|
|
26105
|
+
* @returns JSON object
|
|
26106
|
+
*/
|
|
26107
|
+
public toJSON(): { [k: string]: any };
|
|
26108
|
+
|
|
26109
|
+
/**
|
|
26110
|
+
* Gets the default type url for ExperimentalFeatures
|
|
26111
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26112
|
+
* @returns The default type url
|
|
26113
|
+
*/
|
|
26114
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26115
|
+
}
|
|
26116
|
+
}
|
|
26117
|
+
|
|
24676
26118
|
/** Properties of a NodeSettings. */
|
|
24677
26119
|
interface INodeSettings {
|
|
24678
26120
|
|
|
@@ -24999,6 +26441,9 @@ export namespace google {
|
|
|
24999
26441
|
|
|
25000
26442
|
/** GoSettings common */
|
|
25001
26443
|
common?: (google.api.ICommonLanguageSettings|null);
|
|
26444
|
+
|
|
26445
|
+
/** GoSettings renamedServices */
|
|
26446
|
+
renamedServices?: ({ [k: string]: string }|null);
|
|
25002
26447
|
}
|
|
25003
26448
|
|
|
25004
26449
|
/** Represents a GoSettings. */
|
|
@@ -25013,6 +26458,9 @@ export namespace google {
|
|
|
25013
26458
|
/** GoSettings common. */
|
|
25014
26459
|
public common?: (google.api.ICommonLanguageSettings|null);
|
|
25015
26460
|
|
|
26461
|
+
/** GoSettings renamedServices. */
|
|
26462
|
+
public renamedServices: { [k: string]: string };
|
|
26463
|
+
|
|
25016
26464
|
/**
|
|
25017
26465
|
* Creates a new GoSettings instance using the specified properties.
|
|
25018
26466
|
* @param [properties] Properties to set
|
|
@@ -25337,6 +26785,109 @@ export namespace google {
|
|
|
25337
26785
|
PACKAGE_MANAGER = 20
|
|
25338
26786
|
}
|
|
25339
26787
|
|
|
26788
|
+
/** Properties of a SelectiveGapicGeneration. */
|
|
26789
|
+
interface ISelectiveGapicGeneration {
|
|
26790
|
+
|
|
26791
|
+
/** SelectiveGapicGeneration methods */
|
|
26792
|
+
methods?: (string[]|null);
|
|
26793
|
+
|
|
26794
|
+
/** SelectiveGapicGeneration generateOmittedAsInternal */
|
|
26795
|
+
generateOmittedAsInternal?: (boolean|null);
|
|
26796
|
+
}
|
|
26797
|
+
|
|
26798
|
+
/** Represents a SelectiveGapicGeneration. */
|
|
26799
|
+
class SelectiveGapicGeneration implements ISelectiveGapicGeneration {
|
|
26800
|
+
|
|
26801
|
+
/**
|
|
26802
|
+
* Constructs a new SelectiveGapicGeneration.
|
|
26803
|
+
* @param [properties] Properties to set
|
|
26804
|
+
*/
|
|
26805
|
+
constructor(properties?: google.api.ISelectiveGapicGeneration);
|
|
26806
|
+
|
|
26807
|
+
/** SelectiveGapicGeneration methods. */
|
|
26808
|
+
public methods: string[];
|
|
26809
|
+
|
|
26810
|
+
/** SelectiveGapicGeneration generateOmittedAsInternal. */
|
|
26811
|
+
public generateOmittedAsInternal: boolean;
|
|
26812
|
+
|
|
26813
|
+
/**
|
|
26814
|
+
* Creates a new SelectiveGapicGeneration instance using the specified properties.
|
|
26815
|
+
* @param [properties] Properties to set
|
|
26816
|
+
* @returns SelectiveGapicGeneration instance
|
|
26817
|
+
*/
|
|
26818
|
+
public static create(properties?: google.api.ISelectiveGapicGeneration): google.api.SelectiveGapicGeneration;
|
|
26819
|
+
|
|
26820
|
+
/**
|
|
26821
|
+
* Encodes the specified SelectiveGapicGeneration message. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
|
|
26822
|
+
* @param message SelectiveGapicGeneration message or plain object to encode
|
|
26823
|
+
* @param [writer] Writer to encode to
|
|
26824
|
+
* @returns Writer
|
|
26825
|
+
*/
|
|
26826
|
+
public static encode(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26827
|
+
|
|
26828
|
+
/**
|
|
26829
|
+
* Encodes the specified SelectiveGapicGeneration message, length delimited. Does not implicitly {@link google.api.SelectiveGapicGeneration.verify|verify} messages.
|
|
26830
|
+
* @param message SelectiveGapicGeneration message or plain object to encode
|
|
26831
|
+
* @param [writer] Writer to encode to
|
|
26832
|
+
* @returns Writer
|
|
26833
|
+
*/
|
|
26834
|
+
public static encodeDelimited(message: google.api.ISelectiveGapicGeneration, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
26835
|
+
|
|
26836
|
+
/**
|
|
26837
|
+
* Decodes a SelectiveGapicGeneration message from the specified reader or buffer.
|
|
26838
|
+
* @param reader Reader or buffer to decode from
|
|
26839
|
+
* @param [length] Message length if known beforehand
|
|
26840
|
+
* @returns SelectiveGapicGeneration
|
|
26841
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26842
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26843
|
+
*/
|
|
26844
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.api.SelectiveGapicGeneration;
|
|
26845
|
+
|
|
26846
|
+
/**
|
|
26847
|
+
* Decodes a SelectiveGapicGeneration message from the specified reader or buffer, length delimited.
|
|
26848
|
+
* @param reader Reader or buffer to decode from
|
|
26849
|
+
* @returns SelectiveGapicGeneration
|
|
26850
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
26851
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
26852
|
+
*/
|
|
26853
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.api.SelectiveGapicGeneration;
|
|
26854
|
+
|
|
26855
|
+
/**
|
|
26856
|
+
* Verifies a SelectiveGapicGeneration message.
|
|
26857
|
+
* @param message Plain object to verify
|
|
26858
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
26859
|
+
*/
|
|
26860
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
26861
|
+
|
|
26862
|
+
/**
|
|
26863
|
+
* Creates a SelectiveGapicGeneration message from a plain object. Also converts values to their respective internal types.
|
|
26864
|
+
* @param object Plain object
|
|
26865
|
+
* @returns SelectiveGapicGeneration
|
|
26866
|
+
*/
|
|
26867
|
+
public static fromObject(object: { [k: string]: any }): google.api.SelectiveGapicGeneration;
|
|
26868
|
+
|
|
26869
|
+
/**
|
|
26870
|
+
* Creates a plain object from a SelectiveGapicGeneration message. Also converts values to other types if specified.
|
|
26871
|
+
* @param message SelectiveGapicGeneration
|
|
26872
|
+
* @param [options] Conversion options
|
|
26873
|
+
* @returns Plain object
|
|
26874
|
+
*/
|
|
26875
|
+
public static toObject(message: google.api.SelectiveGapicGeneration, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
26876
|
+
|
|
26877
|
+
/**
|
|
26878
|
+
* Converts this SelectiveGapicGeneration to JSON.
|
|
26879
|
+
* @returns JSON object
|
|
26880
|
+
*/
|
|
26881
|
+
public toJSON(): { [k: string]: any };
|
|
26882
|
+
|
|
26883
|
+
/**
|
|
26884
|
+
* Gets the default type url for SelectiveGapicGeneration
|
|
26885
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
26886
|
+
* @returns The default type url
|
|
26887
|
+
*/
|
|
26888
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
26889
|
+
}
|
|
26890
|
+
|
|
25340
26891
|
/** LaunchStage enum. */
|
|
25341
26892
|
enum LaunchStage {
|
|
25342
26893
|
LAUNCH_STAGE_UNSPECIFIED = 0,
|