@google-shopping/reports 0.1.0 → 0.3.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/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.2.0...reports-v0.3.0) (2024-03-29)
4
+
5
+
6
+ ### Features
7
+
8
+ * [Many APIs] add several fields to manage state of database encryption update ([#5193](https://github.com/googleapis/google-cloud-node/issues/5193)) ([333b409](https://github.com/googleapis/google-cloud-node/commit/333b40951a255ecfab249bd6e7ace5877270ec85))
9
+
10
+ ## [0.2.0](https://github.com/googleapis/google-cloud-node/compare/reports-v0.1.0...reports-v0.2.0) (2024-02-09)
11
+
12
+
13
+ ### Features
14
+
15
+ * Trusted Private Cloud support, use the universeDomain parameter ([#5029](https://github.com/googleapis/google-cloud-node/issues/5029)) ([09e59ad](https://github.com/googleapis/google-cloud-node/commit/09e59ad6e34001a33d01894ccd5a0643f1a84883))
16
+
3
17
  ## 0.1.0 (2023-12-05)
4
18
 
5
19
 
@@ -89,7 +89,7 @@ message Destination {
89
89
  // Reporting contexts are groups of surfaces and formats for product results on
90
90
  // Google. They can represent the entire destination (for example, [Shopping
91
91
  // ads](https://support.google.com/merchants/answer/6149970)) or a subset of
92
- // formats within a destination (for example, [Discovery
92
+ // formats within a destination (for example, [Demand Gen
93
93
  // ads](https://support.google.com/merchants/answer/13389785)).
94
94
  //
95
95
  message ReportingContext {
@@ -101,9 +101,17 @@ message ReportingContext {
101
101
  // [Shopping ads](https://support.google.com/merchants/answer/6149970).
102
102
  SHOPPING_ADS = 1;
103
103
 
104
+ // Deprecated: Use `DEMAND_GEN_ADS` instead.
104
105
  // [Discovery and Demand Gen
105
106
  // ads](https://support.google.com/merchants/answer/13389785).
106
- DISCOVERY_ADS = 2;
107
+ DISCOVERY_ADS = 2 [deprecated = true];
108
+
109
+ // [Demand Gen ads](https://support.google.com/merchants/answer/13389785).
110
+ DEMAND_GEN_ADS = 13;
111
+
112
+ // [Demand Gen ads on Discover
113
+ // surface](https://support.google.com/merchants/answer/13389785).
114
+ DEMAND_GEN_ADS_DISCOVER_SURFACE = 14;
107
115
 
108
116
  // [Video ads](https://support.google.com/google-ads/answer/6340491).
109
117
  VIDEO_ADS = 3;
@@ -1,4 +1,4 @@
1
- // Copyright 2023 Google LLC
1
+ // Copyright 2024 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -3960,6 +3960,8 @@ export namespace google {
3960
3960
  REPORTING_CONTEXT_ENUM_UNSPECIFIED = 0,
3961
3961
  SHOPPING_ADS = 1,
3962
3962
  DISCOVERY_ADS = 2,
3963
+ DEMAND_GEN_ADS = 13,
3964
+ DEMAND_GEN_ADS_DISCOVER_SURFACE = 14,
3963
3965
  VIDEO_ADS = 3,
3964
3966
  DISPLAY_ADS = 4,
3965
3967
  LOCAL_INVENTORY_ADS = 5,
@@ -4731,6 +4733,9 @@ export namespace google {
4731
4733
 
4732
4734
  /** Publishing protoReferenceDocumentationUri */
4733
4735
  protoReferenceDocumentationUri?: (string|null);
4736
+
4737
+ /** Publishing restReferenceDocumentationUri */
4738
+ restReferenceDocumentationUri?: (string|null);
4734
4739
  }
4735
4740
 
4736
4741
  /** Represents a Publishing. */
@@ -4772,6 +4777,9 @@ export namespace google {
4772
4777
  /** Publishing protoReferenceDocumentationUri. */
4773
4778
  public protoReferenceDocumentationUri: string;
4774
4779
 
4780
+ /** Publishing restReferenceDocumentationUri. */
4781
+ public restReferenceDocumentationUri: string;
4782
+
4775
4783
  /**
4776
4784
  * Creates a new Publishing instance using the specified properties.
4777
4785
  * @param [properties] Properties to set
@@ -5676,6 +5684,9 @@ export namespace google {
5676
5684
 
5677
5685
  /** MethodSettings longRunning */
5678
5686
  longRunning?: (google.api.MethodSettings.ILongRunning|null);
5687
+
5688
+ /** MethodSettings autoPopulatedFields */
5689
+ autoPopulatedFields?: (string[]|null);
5679
5690
  }
5680
5691
 
5681
5692
  /** Represents a MethodSettings. */
@@ -5693,6 +5704,9 @@ export namespace google {
5693
5704
  /** MethodSettings longRunning. */
5694
5705
  public longRunning?: (google.api.MethodSettings.ILongRunning|null);
5695
5706
 
5707
+ /** MethodSettings autoPopulatedFields. */
5708
+ public autoPopulatedFields: string[];
5709
+
5696
5710
  /**
5697
5711
  * Creates a new MethodSettings instance using the specified properties.
5698
5712
  * @param [properties] Properties to set
@@ -5929,7 +5943,8 @@ export namespace google {
5929
5943
  INPUT_ONLY = 4,
5930
5944
  IMMUTABLE = 5,
5931
5945
  UNORDERED_LIST = 6,
5932
- NON_EMPTY_DEFAULT = 7
5946
+ NON_EMPTY_DEFAULT = 7,
5947
+ IDENTIFIER = 8
5933
5948
  }
5934
5949
  }
5935
5950
 
@@ -6033,6 +6048,21 @@ export namespace google {
6033
6048
  public static getTypeUrl(typeUrlPrefix?: string): string;
6034
6049
  }
6035
6050
 
6051
+ /** Edition enum. */
6052
+ enum Edition {
6053
+ EDITION_UNKNOWN = 0,
6054
+ EDITION_PROTO2 = 998,
6055
+ EDITION_PROTO3 = 999,
6056
+ EDITION_2023 = 1000,
6057
+ EDITION_2024 = 1001,
6058
+ EDITION_1_TEST_ONLY = 1,
6059
+ EDITION_2_TEST_ONLY = 2,
6060
+ EDITION_99997_TEST_ONLY = 99997,
6061
+ EDITION_99998_TEST_ONLY = 99998,
6062
+ EDITION_99999_TEST_ONLY = 99999,
6063
+ EDITION_MAX = 2147483647
6064
+ }
6065
+
6036
6066
  /** Properties of a FileDescriptorProto. */
6037
6067
  interface IFileDescriptorProto {
6038
6068
 
@@ -6073,7 +6103,7 @@ export namespace google {
6073
6103
  syntax?: (string|null);
6074
6104
 
6075
6105
  /** FileDescriptorProto edition */
6076
- edition?: (string|null);
6106
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
6077
6107
  }
6078
6108
 
6079
6109
  /** Represents a FileDescriptorProto. */
@@ -6122,7 +6152,7 @@ export namespace google {
6122
6152
  public syntax: string;
6123
6153
 
6124
6154
  /** FileDescriptorProto edition. */
6125
- public edition: string;
6155
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
6126
6156
 
6127
6157
  /**
6128
6158
  * Creates a new FileDescriptorProto instance using the specified properties.
@@ -6997,8 +7027,8 @@ export namespace google {
6997
7027
  /** Label enum. */
6998
7028
  enum Label {
6999
7029
  LABEL_OPTIONAL = 1,
7000
- LABEL_REQUIRED = 2,
7001
- LABEL_REPEATED = 3
7030
+ LABEL_REPEATED = 3,
7031
+ LABEL_REQUIRED = 2
7002
7032
  }
7003
7033
  }
7004
7034
 
@@ -7710,9 +7740,6 @@ export namespace google {
7710
7740
  /** FileOptions pyGenericServices */
7711
7741
  pyGenericServices?: (boolean|null);
7712
7742
 
7713
- /** FileOptions phpGenericServices */
7714
- phpGenericServices?: (boolean|null);
7715
-
7716
7743
  /** FileOptions deprecated */
7717
7744
  deprecated?: (boolean|null);
7718
7745
 
@@ -7786,9 +7813,6 @@ export namespace google {
7786
7813
  /** FileOptions pyGenericServices. */
7787
7814
  public pyGenericServices: boolean;
7788
7815
 
7789
- /** FileOptions phpGenericServices. */
7790
- public phpGenericServices: boolean;
7791
-
7792
7816
  /** FileOptions deprecated. */
7793
7817
  public deprecated: boolean;
7794
7818
 
@@ -8256,7 +8280,7 @@ export namespace google {
8256
8280
  interface IEditionDefault {
8257
8281
 
8258
8282
  /** EditionDefault edition */
8259
- edition?: (string|null);
8283
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
8260
8284
 
8261
8285
  /** EditionDefault value */
8262
8286
  value?: (string|null);
@@ -8272,7 +8296,7 @@ export namespace google {
8272
8296
  constructor(properties?: google.protobuf.FieldOptions.IEditionDefault);
8273
8297
 
8274
8298
  /** EditionDefault edition. */
8275
- public edition: string;
8299
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
8276
8300
 
8277
8301
  /** EditionDefault value. */
8278
8302
  public value: string;
@@ -8712,6 +8736,9 @@ export namespace google {
8712
8736
 
8713
8737
  /** ServiceOptions .google.api.oauthScopes */
8714
8738
  ".google.api.oauthScopes"?: (string|null);
8739
+
8740
+ /** ServiceOptions .google.api.apiVersion */
8741
+ ".google.api.apiVersion"?: (string|null);
8715
8742
  }
8716
8743
 
8717
8744
  /** Represents a ServiceOptions. */
@@ -9192,17 +9219,14 @@ export namespace google {
9192
9219
  /** FeatureSet repeatedFieldEncoding */
9193
9220
  repeatedFieldEncoding?: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding|null);
9194
9221
 
9195
- /** FeatureSet stringFieldValidation */
9196
- stringFieldValidation?: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation|null);
9222
+ /** FeatureSet utf8Validation */
9223
+ utf8Validation?: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation|null);
9197
9224
 
9198
9225
  /** FeatureSet messageEncoding */
9199
9226
  messageEncoding?: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding|null);
9200
9227
 
9201
9228
  /** FeatureSet jsonFormat */
9202
9229
  jsonFormat?: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat|null);
9203
-
9204
- /** FeatureSet rawFeatures */
9205
- rawFeatures?: (google.protobuf.IFeatureSet|null);
9206
9230
  }
9207
9231
 
9208
9232
  /** Represents a FeatureSet. */
@@ -9223,8 +9247,8 @@ export namespace google {
9223
9247
  /** FeatureSet repeatedFieldEncoding. */
9224
9248
  public repeatedFieldEncoding: (google.protobuf.FeatureSet.RepeatedFieldEncoding|keyof typeof google.protobuf.FeatureSet.RepeatedFieldEncoding);
9225
9249
 
9226
- /** FeatureSet stringFieldValidation. */
9227
- public stringFieldValidation: (google.protobuf.FeatureSet.StringFieldValidation|keyof typeof google.protobuf.FeatureSet.StringFieldValidation);
9250
+ /** FeatureSet utf8Validation. */
9251
+ public utf8Validation: (google.protobuf.FeatureSet.Utf8Validation|keyof typeof google.protobuf.FeatureSet.Utf8Validation);
9228
9252
 
9229
9253
  /** FeatureSet messageEncoding. */
9230
9254
  public messageEncoding: (google.protobuf.FeatureSet.MessageEncoding|keyof typeof google.protobuf.FeatureSet.MessageEncoding);
@@ -9232,9 +9256,6 @@ export namespace google {
9232
9256
  /** FeatureSet jsonFormat. */
9233
9257
  public jsonFormat: (google.protobuf.FeatureSet.JsonFormat|keyof typeof google.protobuf.FeatureSet.JsonFormat);
9234
9258
 
9235
- /** FeatureSet rawFeatures. */
9236
- public rawFeatures?: (google.protobuf.IFeatureSet|null);
9237
-
9238
9259
  /**
9239
9260
  * Creates a new FeatureSet instance using the specified properties.
9240
9261
  * @param [properties] Properties to set
@@ -9337,11 +9358,10 @@ export namespace google {
9337
9358
  EXPANDED = 2
9338
9359
  }
9339
9360
 
9340
- /** StringFieldValidation enum. */
9341
- enum StringFieldValidation {
9342
- STRING_FIELD_VALIDATION_UNKNOWN = 0,
9343
- MANDATORY = 1,
9344
- HINT = 2,
9361
+ /** Utf8Validation enum. */
9362
+ enum Utf8Validation {
9363
+ UTF8_VALIDATION_UNKNOWN = 0,
9364
+ VERIFY = 2,
9345
9365
  NONE = 3
9346
9366
  }
9347
9367
 
@@ -9360,6 +9380,221 @@ export namespace google {
9360
9380
  }
9361
9381
  }
9362
9382
 
9383
+ /** Properties of a FeatureSetDefaults. */
9384
+ interface IFeatureSetDefaults {
9385
+
9386
+ /** FeatureSetDefaults defaults */
9387
+ defaults?: (google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[]|null);
9388
+
9389
+ /** FeatureSetDefaults minimumEdition */
9390
+ minimumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9391
+
9392
+ /** FeatureSetDefaults maximumEdition */
9393
+ maximumEdition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9394
+ }
9395
+
9396
+ /** Represents a FeatureSetDefaults. */
9397
+ class FeatureSetDefaults implements IFeatureSetDefaults {
9398
+
9399
+ /**
9400
+ * Constructs a new FeatureSetDefaults.
9401
+ * @param [properties] Properties to set
9402
+ */
9403
+ constructor(properties?: google.protobuf.IFeatureSetDefaults);
9404
+
9405
+ /** FeatureSetDefaults defaults. */
9406
+ public defaults: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault[];
9407
+
9408
+ /** FeatureSetDefaults minimumEdition. */
9409
+ public minimumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9410
+
9411
+ /** FeatureSetDefaults maximumEdition. */
9412
+ public maximumEdition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9413
+
9414
+ /**
9415
+ * Creates a new FeatureSetDefaults instance using the specified properties.
9416
+ * @param [properties] Properties to set
9417
+ * @returns FeatureSetDefaults instance
9418
+ */
9419
+ public static create(properties?: google.protobuf.IFeatureSetDefaults): google.protobuf.FeatureSetDefaults;
9420
+
9421
+ /**
9422
+ * Encodes the specified FeatureSetDefaults message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
9423
+ * @param message FeatureSetDefaults message or plain object to encode
9424
+ * @param [writer] Writer to encode to
9425
+ * @returns Writer
9426
+ */
9427
+ public static encode(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
9428
+
9429
+ /**
9430
+ * Encodes the specified FeatureSetDefaults message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.verify|verify} messages.
9431
+ * @param message FeatureSetDefaults message or plain object to encode
9432
+ * @param [writer] Writer to encode to
9433
+ * @returns Writer
9434
+ */
9435
+ public static encodeDelimited(message: google.protobuf.IFeatureSetDefaults, writer?: $protobuf.Writer): $protobuf.Writer;
9436
+
9437
+ /**
9438
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer.
9439
+ * @param reader Reader or buffer to decode from
9440
+ * @param [length] Message length if known beforehand
9441
+ * @returns FeatureSetDefaults
9442
+ * @throws {Error} If the payload is not a reader or valid buffer
9443
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9444
+ */
9445
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults;
9446
+
9447
+ /**
9448
+ * Decodes a FeatureSetDefaults message from the specified reader or buffer, length delimited.
9449
+ * @param reader Reader or buffer to decode from
9450
+ * @returns FeatureSetDefaults
9451
+ * @throws {Error} If the payload is not a reader or valid buffer
9452
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9453
+ */
9454
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults;
9455
+
9456
+ /**
9457
+ * Verifies a FeatureSetDefaults message.
9458
+ * @param message Plain object to verify
9459
+ * @returns `null` if valid, otherwise the reason why it is not
9460
+ */
9461
+ public static verify(message: { [k: string]: any }): (string|null);
9462
+
9463
+ /**
9464
+ * Creates a FeatureSetDefaults message from a plain object. Also converts values to their respective internal types.
9465
+ * @param object Plain object
9466
+ * @returns FeatureSetDefaults
9467
+ */
9468
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults;
9469
+
9470
+ /**
9471
+ * Creates a plain object from a FeatureSetDefaults message. Also converts values to other types if specified.
9472
+ * @param message FeatureSetDefaults
9473
+ * @param [options] Conversion options
9474
+ * @returns Plain object
9475
+ */
9476
+ public static toObject(message: google.protobuf.FeatureSetDefaults, options?: $protobuf.IConversionOptions): { [k: string]: any };
9477
+
9478
+ /**
9479
+ * Converts this FeatureSetDefaults to JSON.
9480
+ * @returns JSON object
9481
+ */
9482
+ public toJSON(): { [k: string]: any };
9483
+
9484
+ /**
9485
+ * Gets the default type url for FeatureSetDefaults
9486
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9487
+ * @returns The default type url
9488
+ */
9489
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9490
+ }
9491
+
9492
+ namespace FeatureSetDefaults {
9493
+
9494
+ /** Properties of a FeatureSetEditionDefault. */
9495
+ interface IFeatureSetEditionDefault {
9496
+
9497
+ /** FeatureSetEditionDefault edition */
9498
+ edition?: (google.protobuf.Edition|keyof typeof google.protobuf.Edition|null);
9499
+
9500
+ /** FeatureSetEditionDefault features */
9501
+ features?: (google.protobuf.IFeatureSet|null);
9502
+ }
9503
+
9504
+ /** Represents a FeatureSetEditionDefault. */
9505
+ class FeatureSetEditionDefault implements IFeatureSetEditionDefault {
9506
+
9507
+ /**
9508
+ * Constructs a new FeatureSetEditionDefault.
9509
+ * @param [properties] Properties to set
9510
+ */
9511
+ constructor(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault);
9512
+
9513
+ /** FeatureSetEditionDefault edition. */
9514
+ public edition: (google.protobuf.Edition|keyof typeof google.protobuf.Edition);
9515
+
9516
+ /** FeatureSetEditionDefault features. */
9517
+ public features?: (google.protobuf.IFeatureSet|null);
9518
+
9519
+ /**
9520
+ * Creates a new FeatureSetEditionDefault instance using the specified properties.
9521
+ * @param [properties] Properties to set
9522
+ * @returns FeatureSetEditionDefault instance
9523
+ */
9524
+ public static create(properties?: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9525
+
9526
+ /**
9527
+ * Encodes the specified FeatureSetEditionDefault message. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
9528
+ * @param message FeatureSetEditionDefault message or plain object to encode
9529
+ * @param [writer] Writer to encode to
9530
+ * @returns Writer
9531
+ */
9532
+ public static encode(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
9533
+
9534
+ /**
9535
+ * Encodes the specified FeatureSetEditionDefault message, length delimited. Does not implicitly {@link google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault.verify|verify} messages.
9536
+ * @param message FeatureSetEditionDefault message or plain object to encode
9537
+ * @param [writer] Writer to encode to
9538
+ * @returns Writer
9539
+ */
9540
+ public static encodeDelimited(message: google.protobuf.FeatureSetDefaults.IFeatureSetEditionDefault, writer?: $protobuf.Writer): $protobuf.Writer;
9541
+
9542
+ /**
9543
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer.
9544
+ * @param reader Reader or buffer to decode from
9545
+ * @param [length] Message length if known beforehand
9546
+ * @returns FeatureSetEditionDefault
9547
+ * @throws {Error} If the payload is not a reader or valid buffer
9548
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9549
+ */
9550
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9551
+
9552
+ /**
9553
+ * Decodes a FeatureSetEditionDefault message from the specified reader or buffer, length delimited.
9554
+ * @param reader Reader or buffer to decode from
9555
+ * @returns FeatureSetEditionDefault
9556
+ * @throws {Error} If the payload is not a reader or valid buffer
9557
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
9558
+ */
9559
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9560
+
9561
+ /**
9562
+ * Verifies a FeatureSetEditionDefault message.
9563
+ * @param message Plain object to verify
9564
+ * @returns `null` if valid, otherwise the reason why it is not
9565
+ */
9566
+ public static verify(message: { [k: string]: any }): (string|null);
9567
+
9568
+ /**
9569
+ * Creates a FeatureSetEditionDefault message from a plain object. Also converts values to their respective internal types.
9570
+ * @param object Plain object
9571
+ * @returns FeatureSetEditionDefault
9572
+ */
9573
+ public static fromObject(object: { [k: string]: any }): google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault;
9574
+
9575
+ /**
9576
+ * Creates a plain object from a FeatureSetEditionDefault message. Also converts values to other types if specified.
9577
+ * @param message FeatureSetEditionDefault
9578
+ * @param [options] Conversion options
9579
+ * @returns Plain object
9580
+ */
9581
+ public static toObject(message: google.protobuf.FeatureSetDefaults.FeatureSetEditionDefault, options?: $protobuf.IConversionOptions): { [k: string]: any };
9582
+
9583
+ /**
9584
+ * Converts this FeatureSetEditionDefault to JSON.
9585
+ * @returns JSON object
9586
+ */
9587
+ public toJSON(): { [k: string]: any };
9588
+
9589
+ /**
9590
+ * Gets the default type url for FeatureSetEditionDefault
9591
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
9592
+ * @returns The default type url
9593
+ */
9594
+ public static getTypeUrl(typeUrlPrefix?: string): string;
9595
+ }
9596
+ }
9597
+
9363
9598
  /** Properties of a SourceCodeInfo. */
9364
9599
  interface ISourceCodeInfo {
9365
9600