@google-analytics/data 4.2.0 → 4.4.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.
@@ -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.
@@ -4163,6 +4163,9 @@ export namespace google {
4163
4163
 
4164
4164
  /** RecurringAudienceList audienceLists */
4165
4165
  audienceLists?: (string[]|null);
4166
+
4167
+ /** RecurringAudienceList webhookNotification */
4168
+ webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
4166
4169
  }
4167
4170
 
4168
4171
  /** Represents a RecurringAudienceList. */
@@ -4192,9 +4195,15 @@ export namespace google {
4192
4195
  /** RecurringAudienceList audienceLists. */
4193
4196
  public audienceLists: string[];
4194
4197
 
4198
+ /** RecurringAudienceList webhookNotification. */
4199
+ public webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
4200
+
4195
4201
  /** RecurringAudienceList _activeDaysRemaining. */
4196
4202
  public _activeDaysRemaining?: "activeDaysRemaining";
4197
4203
 
4204
+ /** RecurringAudienceList _webhookNotification. */
4205
+ public _webhookNotification?: "webhookNotification";
4206
+
4198
4207
  /**
4199
4208
  * Creates a new RecurringAudienceList instance using the specified properties.
4200
4209
  * @param [properties] Properties to set
@@ -4273,6 +4282,115 @@ export namespace google {
4273
4282
  public static getTypeUrl(typeUrlPrefix?: string): string;
4274
4283
  }
4275
4284
 
4285
+ /** Properties of a WebhookNotification. */
4286
+ interface IWebhookNotification {
4287
+
4288
+ /** WebhookNotification uri */
4289
+ uri?: (string|null);
4290
+
4291
+ /** WebhookNotification channelToken */
4292
+ channelToken?: (string|null);
4293
+ }
4294
+
4295
+ /** Represents a WebhookNotification. */
4296
+ class WebhookNotification implements IWebhookNotification {
4297
+
4298
+ /**
4299
+ * Constructs a new WebhookNotification.
4300
+ * @param [properties] Properties to set
4301
+ */
4302
+ constructor(properties?: google.analytics.data.v1alpha.IWebhookNotification);
4303
+
4304
+ /** WebhookNotification uri. */
4305
+ public uri?: (string|null);
4306
+
4307
+ /** WebhookNotification channelToken. */
4308
+ public channelToken?: (string|null);
4309
+
4310
+ /** WebhookNotification _uri. */
4311
+ public _uri?: "uri";
4312
+
4313
+ /** WebhookNotification _channelToken. */
4314
+ public _channelToken?: "channelToken";
4315
+
4316
+ /**
4317
+ * Creates a new WebhookNotification instance using the specified properties.
4318
+ * @param [properties] Properties to set
4319
+ * @returns WebhookNotification instance
4320
+ */
4321
+ public static create(properties?: google.analytics.data.v1alpha.IWebhookNotification): google.analytics.data.v1alpha.WebhookNotification;
4322
+
4323
+ /**
4324
+ * Encodes the specified WebhookNotification message. Does not implicitly {@link google.analytics.data.v1alpha.WebhookNotification.verify|verify} messages.
4325
+ * @param message WebhookNotification message or plain object to encode
4326
+ * @param [writer] Writer to encode to
4327
+ * @returns Writer
4328
+ */
4329
+ public static encode(message: google.analytics.data.v1alpha.IWebhookNotification, writer?: $protobuf.Writer): $protobuf.Writer;
4330
+
4331
+ /**
4332
+ * Encodes the specified WebhookNotification message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.WebhookNotification.verify|verify} messages.
4333
+ * @param message WebhookNotification message or plain object to encode
4334
+ * @param [writer] Writer to encode to
4335
+ * @returns Writer
4336
+ */
4337
+ public static encodeDelimited(message: google.analytics.data.v1alpha.IWebhookNotification, writer?: $protobuf.Writer): $protobuf.Writer;
4338
+
4339
+ /**
4340
+ * Decodes a WebhookNotification message from the specified reader or buffer.
4341
+ * @param reader Reader or buffer to decode from
4342
+ * @param [length] Message length if known beforehand
4343
+ * @returns WebhookNotification
4344
+ * @throws {Error} If the payload is not a reader or valid buffer
4345
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4346
+ */
4347
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.WebhookNotification;
4348
+
4349
+ /**
4350
+ * Decodes a WebhookNotification message from the specified reader or buffer, length delimited.
4351
+ * @param reader Reader or buffer to decode from
4352
+ * @returns WebhookNotification
4353
+ * @throws {Error} If the payload is not a reader or valid buffer
4354
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
4355
+ */
4356
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.WebhookNotification;
4357
+
4358
+ /**
4359
+ * Verifies a WebhookNotification message.
4360
+ * @param message Plain object to verify
4361
+ * @returns `null` if valid, otherwise the reason why it is not
4362
+ */
4363
+ public static verify(message: { [k: string]: any }): (string|null);
4364
+
4365
+ /**
4366
+ * Creates a WebhookNotification message from a plain object. Also converts values to their respective internal types.
4367
+ * @param object Plain object
4368
+ * @returns WebhookNotification
4369
+ */
4370
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.WebhookNotification;
4371
+
4372
+ /**
4373
+ * Creates a plain object from a WebhookNotification message. Also converts values to other types if specified.
4374
+ * @param message WebhookNotification
4375
+ * @param [options] Conversion options
4376
+ * @returns Plain object
4377
+ */
4378
+ public static toObject(message: google.analytics.data.v1alpha.WebhookNotification, options?: $protobuf.IConversionOptions): { [k: string]: any };
4379
+
4380
+ /**
4381
+ * Converts this WebhookNotification to JSON.
4382
+ * @returns JSON object
4383
+ */
4384
+ public toJSON(): { [k: string]: any };
4385
+
4386
+ /**
4387
+ * Gets the default type url for WebhookNotification
4388
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
4389
+ * @returns The default type url
4390
+ */
4391
+ public static getTypeUrl(typeUrlPrefix?: string): string;
4392
+ }
4393
+
4276
4394
  /** Properties of a GetRecurringAudienceListRequest. */
4277
4395
  interface IGetRecurringAudienceListRequest {
4278
4396
 
@@ -5035,6 +5153,9 @@ export namespace google {
5035
5153
 
5036
5154
  /** AudienceList recurringAudienceList */
5037
5155
  recurringAudienceList?: (string|null);
5156
+
5157
+ /** AudienceList webhookNotification */
5158
+ webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
5038
5159
  }
5039
5160
 
5040
5161
  /** Represents an AudienceList. */
@@ -5079,6 +5200,9 @@ export namespace google {
5079
5200
  /** AudienceList recurringAudienceList. */
5080
5201
  public recurringAudienceList?: (string|null);
5081
5202
 
5203
+ /** AudienceList webhookNotification. */
5204
+ public webhookNotification?: (google.analytics.data.v1alpha.IWebhookNotification|null);
5205
+
5082
5206
  /** AudienceList _state. */
5083
5207
  public _state?: "state";
5084
5208
 
@@ -5097,6 +5221,9 @@ export namespace google {
5097
5221
  /** AudienceList _recurringAudienceList. */
5098
5222
  public _recurringAudienceList?: "recurringAudienceList";
5099
5223
 
5224
+ /** AudienceList _webhookNotification. */
5225
+ public _webhookNotification?: "webhookNotification";
5226
+
5100
5227
  /**
5101
5228
  * Creates a new AudienceList instance using the specified properties.
5102
5229
  * @param [properties] Properties to set
@@ -12760,6 +12887,62 @@ export namespace google {
12760
12887
  * @returns Promise
12761
12888
  */
12762
12889
  public checkCompatibility(request: google.analytics.data.v1beta.ICheckCompatibilityRequest): Promise<google.analytics.data.v1beta.CheckCompatibilityResponse>;
12890
+
12891
+ /**
12892
+ * Calls CreateAudienceExport.
12893
+ * @param request CreateAudienceExportRequest message or plain object
12894
+ * @param callback Node-style callback called with the error, if any, and Operation
12895
+ */
12896
+ public createAudienceExport(request: google.analytics.data.v1beta.ICreateAudienceExportRequest, callback: google.analytics.data.v1beta.BetaAnalyticsData.CreateAudienceExportCallback): void;
12897
+
12898
+ /**
12899
+ * Calls CreateAudienceExport.
12900
+ * @param request CreateAudienceExportRequest message or plain object
12901
+ * @returns Promise
12902
+ */
12903
+ public createAudienceExport(request: google.analytics.data.v1beta.ICreateAudienceExportRequest): Promise<google.longrunning.Operation>;
12904
+
12905
+ /**
12906
+ * Calls QueryAudienceExport.
12907
+ * @param request QueryAudienceExportRequest message or plain object
12908
+ * @param callback Node-style callback called with the error, if any, and QueryAudienceExportResponse
12909
+ */
12910
+ public queryAudienceExport(request: google.analytics.data.v1beta.IQueryAudienceExportRequest, callback: google.analytics.data.v1beta.BetaAnalyticsData.QueryAudienceExportCallback): void;
12911
+
12912
+ /**
12913
+ * Calls QueryAudienceExport.
12914
+ * @param request QueryAudienceExportRequest message or plain object
12915
+ * @returns Promise
12916
+ */
12917
+ public queryAudienceExport(request: google.analytics.data.v1beta.IQueryAudienceExportRequest): Promise<google.analytics.data.v1beta.QueryAudienceExportResponse>;
12918
+
12919
+ /**
12920
+ * Calls GetAudienceExport.
12921
+ * @param request GetAudienceExportRequest message or plain object
12922
+ * @param callback Node-style callback called with the error, if any, and AudienceExport
12923
+ */
12924
+ public getAudienceExport(request: google.analytics.data.v1beta.IGetAudienceExportRequest, callback: google.analytics.data.v1beta.BetaAnalyticsData.GetAudienceExportCallback): void;
12925
+
12926
+ /**
12927
+ * Calls GetAudienceExport.
12928
+ * @param request GetAudienceExportRequest message or plain object
12929
+ * @returns Promise
12930
+ */
12931
+ public getAudienceExport(request: google.analytics.data.v1beta.IGetAudienceExportRequest): Promise<google.analytics.data.v1beta.AudienceExport>;
12932
+
12933
+ /**
12934
+ * Calls ListAudienceExports.
12935
+ * @param request ListAudienceExportsRequest message or plain object
12936
+ * @param callback Node-style callback called with the error, if any, and ListAudienceExportsResponse
12937
+ */
12938
+ public listAudienceExports(request: google.analytics.data.v1beta.IListAudienceExportsRequest, callback: google.analytics.data.v1beta.BetaAnalyticsData.ListAudienceExportsCallback): void;
12939
+
12940
+ /**
12941
+ * Calls ListAudienceExports.
12942
+ * @param request ListAudienceExportsRequest message or plain object
12943
+ * @returns Promise
12944
+ */
12945
+ public listAudienceExports(request: google.analytics.data.v1beta.IListAudienceExportsRequest): Promise<google.analytics.data.v1beta.ListAudienceExportsResponse>;
12763
12946
  }
12764
12947
 
12765
12948
  namespace BetaAnalyticsData {
@@ -12812,6 +12995,34 @@ export namespace google {
12812
12995
  * @param [response] CheckCompatibilityResponse
12813
12996
  */
12814
12997
  type CheckCompatibilityCallback = (error: (Error|null), response?: google.analytics.data.v1beta.CheckCompatibilityResponse) => void;
12998
+
12999
+ /**
13000
+ * Callback as used by {@link google.analytics.data.v1beta.BetaAnalyticsData|createAudienceExport}.
13001
+ * @param error Error, if any
13002
+ * @param [response] Operation
13003
+ */
13004
+ type CreateAudienceExportCallback = (error: (Error|null), response?: google.longrunning.Operation) => void;
13005
+
13006
+ /**
13007
+ * Callback as used by {@link google.analytics.data.v1beta.BetaAnalyticsData|queryAudienceExport}.
13008
+ * @param error Error, if any
13009
+ * @param [response] QueryAudienceExportResponse
13010
+ */
13011
+ type QueryAudienceExportCallback = (error: (Error|null), response?: google.analytics.data.v1beta.QueryAudienceExportResponse) => void;
13012
+
13013
+ /**
13014
+ * Callback as used by {@link google.analytics.data.v1beta.BetaAnalyticsData|getAudienceExport}.
13015
+ * @param error Error, if any
13016
+ * @param [response] AudienceExport
13017
+ */
13018
+ type GetAudienceExportCallback = (error: (Error|null), response?: google.analytics.data.v1beta.AudienceExport) => void;
13019
+
13020
+ /**
13021
+ * Callback as used by {@link google.analytics.data.v1beta.BetaAnalyticsData|listAudienceExports}.
13022
+ * @param error Error, if any
13023
+ * @param [response] ListAudienceExportsResponse
13024
+ */
13025
+ type ListAudienceExportsCallback = (error: (Error|null), response?: google.analytics.data.v1beta.ListAudienceExportsResponse) => void;
12815
13026
  }
12816
13027
 
12817
13028
  /** Properties of a CheckCompatibilityRequest. */
@@ -14580,314 +14791,1515 @@ export namespace google {
14580
14791
  public static getTypeUrl(typeUrlPrefix?: string): string;
14581
14792
  }
14582
14793
 
14583
- /** Properties of a DateRange. */
14584
- interface IDateRange {
14585
-
14586
- /** DateRange startDate */
14587
- startDate?: (string|null);
14588
-
14589
- /** DateRange endDate */
14590
- endDate?: (string|null);
14794
+ /** Properties of a GetAudienceExportRequest. */
14795
+ interface IGetAudienceExportRequest {
14591
14796
 
14592
- /** DateRange name */
14797
+ /** GetAudienceExportRequest name */
14593
14798
  name?: (string|null);
14594
14799
  }
14595
14800
 
14596
- /** Represents a DateRange. */
14597
- class DateRange implements IDateRange {
14801
+ /** Represents a GetAudienceExportRequest. */
14802
+ class GetAudienceExportRequest implements IGetAudienceExportRequest {
14598
14803
 
14599
14804
  /**
14600
- * Constructs a new DateRange.
14805
+ * Constructs a new GetAudienceExportRequest.
14601
14806
  * @param [properties] Properties to set
14602
14807
  */
14603
- constructor(properties?: google.analytics.data.v1beta.IDateRange);
14604
-
14605
- /** DateRange startDate. */
14606
- public startDate: string;
14607
-
14608
- /** DateRange endDate. */
14609
- public endDate: string;
14808
+ constructor(properties?: google.analytics.data.v1beta.IGetAudienceExportRequest);
14610
14809
 
14611
- /** DateRange name. */
14810
+ /** GetAudienceExportRequest name. */
14612
14811
  public name: string;
14613
14812
 
14614
14813
  /**
14615
- * Creates a new DateRange instance using the specified properties.
14814
+ * Creates a new GetAudienceExportRequest instance using the specified properties.
14616
14815
  * @param [properties] Properties to set
14617
- * @returns DateRange instance
14816
+ * @returns GetAudienceExportRequest instance
14618
14817
  */
14619
- public static create(properties?: google.analytics.data.v1beta.IDateRange): google.analytics.data.v1beta.DateRange;
14818
+ public static create(properties?: google.analytics.data.v1beta.IGetAudienceExportRequest): google.analytics.data.v1beta.GetAudienceExportRequest;
14620
14819
 
14621
14820
  /**
14622
- * Encodes the specified DateRange message. Does not implicitly {@link google.analytics.data.v1beta.DateRange.verify|verify} messages.
14623
- * @param message DateRange message or plain object to encode
14821
+ * Encodes the specified GetAudienceExportRequest message. Does not implicitly {@link google.analytics.data.v1beta.GetAudienceExportRequest.verify|verify} messages.
14822
+ * @param message GetAudienceExportRequest message or plain object to encode
14624
14823
  * @param [writer] Writer to encode to
14625
14824
  * @returns Writer
14626
14825
  */
14627
- public static encode(message: google.analytics.data.v1beta.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
14826
+ public static encode(message: google.analytics.data.v1beta.IGetAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
14628
14827
 
14629
14828
  /**
14630
- * Encodes the specified DateRange message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.DateRange.verify|verify} messages.
14631
- * @param message DateRange message or plain object to encode
14829
+ * Encodes the specified GetAudienceExportRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.GetAudienceExportRequest.verify|verify} messages.
14830
+ * @param message GetAudienceExportRequest message or plain object to encode
14632
14831
  * @param [writer] Writer to encode to
14633
14832
  * @returns Writer
14634
14833
  */
14635
- public static encodeDelimited(message: google.analytics.data.v1beta.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
14834
+ public static encodeDelimited(message: google.analytics.data.v1beta.IGetAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
14636
14835
 
14637
14836
  /**
14638
- * Decodes a DateRange message from the specified reader or buffer.
14837
+ * Decodes a GetAudienceExportRequest message from the specified reader or buffer.
14639
14838
  * @param reader Reader or buffer to decode from
14640
14839
  * @param [length] Message length if known beforehand
14641
- * @returns DateRange
14840
+ * @returns GetAudienceExportRequest
14642
14841
  * @throws {Error} If the payload is not a reader or valid buffer
14643
14842
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14644
14843
  */
14645
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.DateRange;
14844
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.GetAudienceExportRequest;
14646
14845
 
14647
14846
  /**
14648
- * Decodes a DateRange message from the specified reader or buffer, length delimited.
14847
+ * Decodes a GetAudienceExportRequest message from the specified reader or buffer, length delimited.
14649
14848
  * @param reader Reader or buffer to decode from
14650
- * @returns DateRange
14849
+ * @returns GetAudienceExportRequest
14651
14850
  * @throws {Error} If the payload is not a reader or valid buffer
14652
14851
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14653
14852
  */
14654
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.DateRange;
14853
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.GetAudienceExportRequest;
14655
14854
 
14656
14855
  /**
14657
- * Verifies a DateRange message.
14856
+ * Verifies a GetAudienceExportRequest message.
14658
14857
  * @param message Plain object to verify
14659
14858
  * @returns `null` if valid, otherwise the reason why it is not
14660
14859
  */
14661
14860
  public static verify(message: { [k: string]: any }): (string|null);
14662
14861
 
14663
14862
  /**
14664
- * Creates a DateRange message from a plain object. Also converts values to their respective internal types.
14863
+ * Creates a GetAudienceExportRequest message from a plain object. Also converts values to their respective internal types.
14665
14864
  * @param object Plain object
14666
- * @returns DateRange
14865
+ * @returns GetAudienceExportRequest
14667
14866
  */
14668
- public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.DateRange;
14867
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.GetAudienceExportRequest;
14669
14868
 
14670
14869
  /**
14671
- * Creates a plain object from a DateRange message. Also converts values to other types if specified.
14672
- * @param message DateRange
14870
+ * Creates a plain object from a GetAudienceExportRequest message. Also converts values to other types if specified.
14871
+ * @param message GetAudienceExportRequest
14673
14872
  * @param [options] Conversion options
14674
14873
  * @returns Plain object
14675
14874
  */
14676
- public static toObject(message: google.analytics.data.v1beta.DateRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
14875
+ public static toObject(message: google.analytics.data.v1beta.GetAudienceExportRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
14677
14876
 
14678
14877
  /**
14679
- * Converts this DateRange to JSON.
14878
+ * Converts this GetAudienceExportRequest to JSON.
14680
14879
  * @returns JSON object
14681
14880
  */
14682
14881
  public toJSON(): { [k: string]: any };
14683
14882
 
14684
14883
  /**
14685
- * Gets the default type url for DateRange
14884
+ * Gets the default type url for GetAudienceExportRequest
14686
14885
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14687
14886
  * @returns The default type url
14688
14887
  */
14689
14888
  public static getTypeUrl(typeUrlPrefix?: string): string;
14690
14889
  }
14691
14890
 
14692
- /** Properties of a MinuteRange. */
14693
- interface IMinuteRange {
14891
+ /** Properties of a ListAudienceExportsRequest. */
14892
+ interface IListAudienceExportsRequest {
14694
14893
 
14695
- /** MinuteRange startMinutesAgo */
14696
- startMinutesAgo?: (number|null);
14894
+ /** ListAudienceExportsRequest parent */
14895
+ parent?: (string|null);
14697
14896
 
14698
- /** MinuteRange endMinutesAgo */
14699
- endMinutesAgo?: (number|null);
14897
+ /** ListAudienceExportsRequest pageSize */
14898
+ pageSize?: (number|null);
14700
14899
 
14701
- /** MinuteRange name */
14702
- name?: (string|null);
14900
+ /** ListAudienceExportsRequest pageToken */
14901
+ pageToken?: (string|null);
14703
14902
  }
14704
14903
 
14705
- /** Represents a MinuteRange. */
14706
- class MinuteRange implements IMinuteRange {
14904
+ /** Represents a ListAudienceExportsRequest. */
14905
+ class ListAudienceExportsRequest implements IListAudienceExportsRequest {
14707
14906
 
14708
14907
  /**
14709
- * Constructs a new MinuteRange.
14908
+ * Constructs a new ListAudienceExportsRequest.
14710
14909
  * @param [properties] Properties to set
14711
14910
  */
14712
- constructor(properties?: google.analytics.data.v1beta.IMinuteRange);
14713
-
14714
- /** MinuteRange startMinutesAgo. */
14715
- public startMinutesAgo?: (number|null);
14716
-
14717
- /** MinuteRange endMinutesAgo. */
14718
- public endMinutesAgo?: (number|null);
14911
+ constructor(properties?: google.analytics.data.v1beta.IListAudienceExportsRequest);
14719
14912
 
14720
- /** MinuteRange name. */
14721
- public name: string;
14913
+ /** ListAudienceExportsRequest parent. */
14914
+ public parent: string;
14722
14915
 
14723
- /** MinuteRange _startMinutesAgo. */
14724
- public _startMinutesAgo?: "startMinutesAgo";
14916
+ /** ListAudienceExportsRequest pageSize. */
14917
+ public pageSize: number;
14725
14918
 
14726
- /** MinuteRange _endMinutesAgo. */
14727
- public _endMinutesAgo?: "endMinutesAgo";
14919
+ /** ListAudienceExportsRequest pageToken. */
14920
+ public pageToken: string;
14728
14921
 
14729
14922
  /**
14730
- * Creates a new MinuteRange instance using the specified properties.
14923
+ * Creates a new ListAudienceExportsRequest instance using the specified properties.
14731
14924
  * @param [properties] Properties to set
14732
- * @returns MinuteRange instance
14925
+ * @returns ListAudienceExportsRequest instance
14733
14926
  */
14734
- public static create(properties?: google.analytics.data.v1beta.IMinuteRange): google.analytics.data.v1beta.MinuteRange;
14927
+ public static create(properties?: google.analytics.data.v1beta.IListAudienceExportsRequest): google.analytics.data.v1beta.ListAudienceExportsRequest;
14735
14928
 
14736
14929
  /**
14737
- * Encodes the specified MinuteRange message. Does not implicitly {@link google.analytics.data.v1beta.MinuteRange.verify|verify} messages.
14738
- * @param message MinuteRange message or plain object to encode
14930
+ * Encodes the specified ListAudienceExportsRequest message. Does not implicitly {@link google.analytics.data.v1beta.ListAudienceExportsRequest.verify|verify} messages.
14931
+ * @param message ListAudienceExportsRequest message or plain object to encode
14739
14932
  * @param [writer] Writer to encode to
14740
14933
  * @returns Writer
14741
14934
  */
14742
- public static encode(message: google.analytics.data.v1beta.IMinuteRange, writer?: $protobuf.Writer): $protobuf.Writer;
14935
+ public static encode(message: google.analytics.data.v1beta.IListAudienceExportsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
14743
14936
 
14744
14937
  /**
14745
- * Encodes the specified MinuteRange message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.MinuteRange.verify|verify} messages.
14746
- * @param message MinuteRange message or plain object to encode
14938
+ * Encodes the specified ListAudienceExportsRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ListAudienceExportsRequest.verify|verify} messages.
14939
+ * @param message ListAudienceExportsRequest message or plain object to encode
14747
14940
  * @param [writer] Writer to encode to
14748
14941
  * @returns Writer
14749
14942
  */
14750
- public static encodeDelimited(message: google.analytics.data.v1beta.IMinuteRange, writer?: $protobuf.Writer): $protobuf.Writer;
14943
+ public static encodeDelimited(message: google.analytics.data.v1beta.IListAudienceExportsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
14751
14944
 
14752
14945
  /**
14753
- * Decodes a MinuteRange message from the specified reader or buffer.
14946
+ * Decodes a ListAudienceExportsRequest message from the specified reader or buffer.
14754
14947
  * @param reader Reader or buffer to decode from
14755
14948
  * @param [length] Message length if known beforehand
14756
- * @returns MinuteRange
14949
+ * @returns ListAudienceExportsRequest
14757
14950
  * @throws {Error} If the payload is not a reader or valid buffer
14758
14951
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14759
14952
  */
14760
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.MinuteRange;
14953
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ListAudienceExportsRequest;
14761
14954
 
14762
14955
  /**
14763
- * Decodes a MinuteRange message from the specified reader or buffer, length delimited.
14956
+ * Decodes a ListAudienceExportsRequest message from the specified reader or buffer, length delimited.
14764
14957
  * @param reader Reader or buffer to decode from
14765
- * @returns MinuteRange
14958
+ * @returns ListAudienceExportsRequest
14766
14959
  * @throws {Error} If the payload is not a reader or valid buffer
14767
14960
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14768
14961
  */
14769
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.MinuteRange;
14962
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ListAudienceExportsRequest;
14770
14963
 
14771
14964
  /**
14772
- * Verifies a MinuteRange message.
14965
+ * Verifies a ListAudienceExportsRequest message.
14773
14966
  * @param message Plain object to verify
14774
14967
  * @returns `null` if valid, otherwise the reason why it is not
14775
14968
  */
14776
14969
  public static verify(message: { [k: string]: any }): (string|null);
14777
14970
 
14778
14971
  /**
14779
- * Creates a MinuteRange message from a plain object. Also converts values to their respective internal types.
14972
+ * Creates a ListAudienceExportsRequest message from a plain object. Also converts values to their respective internal types.
14780
14973
  * @param object Plain object
14781
- * @returns MinuteRange
14974
+ * @returns ListAudienceExportsRequest
14782
14975
  */
14783
- public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.MinuteRange;
14976
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ListAudienceExportsRequest;
14784
14977
 
14785
14978
  /**
14786
- * Creates a plain object from a MinuteRange message. Also converts values to other types if specified.
14787
- * @param message MinuteRange
14979
+ * Creates a plain object from a ListAudienceExportsRequest message. Also converts values to other types if specified.
14980
+ * @param message ListAudienceExportsRequest
14788
14981
  * @param [options] Conversion options
14789
14982
  * @returns Plain object
14790
14983
  */
14791
- public static toObject(message: google.analytics.data.v1beta.MinuteRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
14984
+ public static toObject(message: google.analytics.data.v1beta.ListAudienceExportsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
14792
14985
 
14793
14986
  /**
14794
- * Converts this MinuteRange to JSON.
14987
+ * Converts this ListAudienceExportsRequest to JSON.
14795
14988
  * @returns JSON object
14796
14989
  */
14797
14990
  public toJSON(): { [k: string]: any };
14798
14991
 
14799
14992
  /**
14800
- * Gets the default type url for MinuteRange
14993
+ * Gets the default type url for ListAudienceExportsRequest
14801
14994
  * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
14802
14995
  * @returns The default type url
14803
14996
  */
14804
14997
  public static getTypeUrl(typeUrlPrefix?: string): string;
14805
14998
  }
14806
14999
 
14807
- /** Properties of a Dimension. */
14808
- interface IDimension {
15000
+ /** Properties of a ListAudienceExportsResponse. */
15001
+ interface IListAudienceExportsResponse {
14809
15002
 
14810
- /** Dimension name */
14811
- name?: (string|null);
15003
+ /** ListAudienceExportsResponse audienceExports */
15004
+ audienceExports?: (google.analytics.data.v1beta.IAudienceExport[]|null);
14812
15005
 
14813
- /** Dimension dimensionExpression */
14814
- dimensionExpression?: (google.analytics.data.v1beta.IDimensionExpression|null);
15006
+ /** ListAudienceExportsResponse nextPageToken */
15007
+ nextPageToken?: (string|null);
14815
15008
  }
14816
15009
 
14817
- /** Represents a Dimension. */
14818
- class Dimension implements IDimension {
15010
+ /** Represents a ListAudienceExportsResponse. */
15011
+ class ListAudienceExportsResponse implements IListAudienceExportsResponse {
14819
15012
 
14820
15013
  /**
14821
- * Constructs a new Dimension.
15014
+ * Constructs a new ListAudienceExportsResponse.
14822
15015
  * @param [properties] Properties to set
14823
15016
  */
14824
- constructor(properties?: google.analytics.data.v1beta.IDimension);
15017
+ constructor(properties?: google.analytics.data.v1beta.IListAudienceExportsResponse);
14825
15018
 
14826
- /** Dimension name. */
14827
- public name: string;
15019
+ /** ListAudienceExportsResponse audienceExports. */
15020
+ public audienceExports: google.analytics.data.v1beta.IAudienceExport[];
14828
15021
 
14829
- /** Dimension dimensionExpression. */
14830
- public dimensionExpression?: (google.analytics.data.v1beta.IDimensionExpression|null);
15022
+ /** ListAudienceExportsResponse nextPageToken. */
15023
+ public nextPageToken?: (string|null);
15024
+
15025
+ /** ListAudienceExportsResponse _nextPageToken. */
15026
+ public _nextPageToken?: "nextPageToken";
14831
15027
 
14832
15028
  /**
14833
- * Creates a new Dimension instance using the specified properties.
15029
+ * Creates a new ListAudienceExportsResponse instance using the specified properties.
14834
15030
  * @param [properties] Properties to set
14835
- * @returns Dimension instance
15031
+ * @returns ListAudienceExportsResponse instance
14836
15032
  */
14837
- public static create(properties?: google.analytics.data.v1beta.IDimension): google.analytics.data.v1beta.Dimension;
15033
+ public static create(properties?: google.analytics.data.v1beta.IListAudienceExportsResponse): google.analytics.data.v1beta.ListAudienceExportsResponse;
14838
15034
 
14839
15035
  /**
14840
- * Encodes the specified Dimension message. Does not implicitly {@link google.analytics.data.v1beta.Dimension.verify|verify} messages.
14841
- * @param message Dimension message or plain object to encode
15036
+ * Encodes the specified ListAudienceExportsResponse message. Does not implicitly {@link google.analytics.data.v1beta.ListAudienceExportsResponse.verify|verify} messages.
15037
+ * @param message ListAudienceExportsResponse message or plain object to encode
14842
15038
  * @param [writer] Writer to encode to
14843
15039
  * @returns Writer
14844
15040
  */
14845
- public static encode(message: google.analytics.data.v1beta.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
15041
+ public static encode(message: google.analytics.data.v1beta.IListAudienceExportsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
14846
15042
 
14847
15043
  /**
14848
- * Encodes the specified Dimension message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.Dimension.verify|verify} messages.
14849
- * @param message Dimension message or plain object to encode
15044
+ * Encodes the specified ListAudienceExportsResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.ListAudienceExportsResponse.verify|verify} messages.
15045
+ * @param message ListAudienceExportsResponse message or plain object to encode
14850
15046
  * @param [writer] Writer to encode to
14851
15047
  * @returns Writer
14852
15048
  */
14853
- public static encodeDelimited(message: google.analytics.data.v1beta.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
15049
+ public static encodeDelimited(message: google.analytics.data.v1beta.IListAudienceExportsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
14854
15050
 
14855
15051
  /**
14856
- * Decodes a Dimension message from the specified reader or buffer.
15052
+ * Decodes a ListAudienceExportsResponse message from the specified reader or buffer.
14857
15053
  * @param reader Reader or buffer to decode from
14858
15054
  * @param [length] Message length if known beforehand
14859
- * @returns Dimension
15055
+ * @returns ListAudienceExportsResponse
14860
15056
  * @throws {Error} If the payload is not a reader or valid buffer
14861
15057
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14862
15058
  */
14863
- public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.Dimension;
15059
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.ListAudienceExportsResponse;
14864
15060
 
14865
15061
  /**
14866
- * Decodes a Dimension message from the specified reader or buffer, length delimited.
15062
+ * Decodes a ListAudienceExportsResponse message from the specified reader or buffer, length delimited.
14867
15063
  * @param reader Reader or buffer to decode from
14868
- * @returns Dimension
15064
+ * @returns ListAudienceExportsResponse
14869
15065
  * @throws {Error} If the payload is not a reader or valid buffer
14870
15066
  * @throws {$protobuf.util.ProtocolError} If required fields are missing
14871
15067
  */
14872
- public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.Dimension;
15068
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.ListAudienceExportsResponse;
14873
15069
 
14874
15070
  /**
14875
- * Verifies a Dimension message.
15071
+ * Verifies a ListAudienceExportsResponse message.
14876
15072
  * @param message Plain object to verify
14877
15073
  * @returns `null` if valid, otherwise the reason why it is not
14878
15074
  */
14879
15075
  public static verify(message: { [k: string]: any }): (string|null);
14880
15076
 
14881
15077
  /**
14882
- * Creates a Dimension message from a plain object. Also converts values to their respective internal types.
15078
+ * Creates a ListAudienceExportsResponse message from a plain object. Also converts values to their respective internal types.
14883
15079
  * @param object Plain object
14884
- * @returns Dimension
15080
+ * @returns ListAudienceExportsResponse
14885
15081
  */
14886
- public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.Dimension;
15082
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.ListAudienceExportsResponse;
14887
15083
 
14888
15084
  /**
14889
- * Creates a plain object from a Dimension message. Also converts values to other types if specified.
14890
- * @param message Dimension
15085
+ * Creates a plain object from a ListAudienceExportsResponse message. Also converts values to other types if specified.
15086
+ * @param message ListAudienceExportsResponse
15087
+ * @param [options] Conversion options
15088
+ * @returns Plain object
15089
+ */
15090
+ public static toObject(message: google.analytics.data.v1beta.ListAudienceExportsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
15091
+
15092
+ /**
15093
+ * Converts this ListAudienceExportsResponse to JSON.
15094
+ * @returns JSON object
15095
+ */
15096
+ public toJSON(): { [k: string]: any };
15097
+
15098
+ /**
15099
+ * Gets the default type url for ListAudienceExportsResponse
15100
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15101
+ * @returns The default type url
15102
+ */
15103
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15104
+ }
15105
+
15106
+ /** Properties of a CreateAudienceExportRequest. */
15107
+ interface ICreateAudienceExportRequest {
15108
+
15109
+ /** CreateAudienceExportRequest parent */
15110
+ parent?: (string|null);
15111
+
15112
+ /** CreateAudienceExportRequest audienceExport */
15113
+ audienceExport?: (google.analytics.data.v1beta.IAudienceExport|null);
15114
+ }
15115
+
15116
+ /** Represents a CreateAudienceExportRequest. */
15117
+ class CreateAudienceExportRequest implements ICreateAudienceExportRequest {
15118
+
15119
+ /**
15120
+ * Constructs a new CreateAudienceExportRequest.
15121
+ * @param [properties] Properties to set
15122
+ */
15123
+ constructor(properties?: google.analytics.data.v1beta.ICreateAudienceExportRequest);
15124
+
15125
+ /** CreateAudienceExportRequest parent. */
15126
+ public parent: string;
15127
+
15128
+ /** CreateAudienceExportRequest audienceExport. */
15129
+ public audienceExport?: (google.analytics.data.v1beta.IAudienceExport|null);
15130
+
15131
+ /**
15132
+ * Creates a new CreateAudienceExportRequest instance using the specified properties.
15133
+ * @param [properties] Properties to set
15134
+ * @returns CreateAudienceExportRequest instance
15135
+ */
15136
+ public static create(properties?: google.analytics.data.v1beta.ICreateAudienceExportRequest): google.analytics.data.v1beta.CreateAudienceExportRequest;
15137
+
15138
+ /**
15139
+ * Encodes the specified CreateAudienceExportRequest message. Does not implicitly {@link google.analytics.data.v1beta.CreateAudienceExportRequest.verify|verify} messages.
15140
+ * @param message CreateAudienceExportRequest message or plain object to encode
15141
+ * @param [writer] Writer to encode to
15142
+ * @returns Writer
15143
+ */
15144
+ public static encode(message: google.analytics.data.v1beta.ICreateAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15145
+
15146
+ /**
15147
+ * Encodes the specified CreateAudienceExportRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.CreateAudienceExportRequest.verify|verify} messages.
15148
+ * @param message CreateAudienceExportRequest message or plain object to encode
15149
+ * @param [writer] Writer to encode to
15150
+ * @returns Writer
15151
+ */
15152
+ public static encodeDelimited(message: google.analytics.data.v1beta.ICreateAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15153
+
15154
+ /**
15155
+ * Decodes a CreateAudienceExportRequest message from the specified reader or buffer.
15156
+ * @param reader Reader or buffer to decode from
15157
+ * @param [length] Message length if known beforehand
15158
+ * @returns CreateAudienceExportRequest
15159
+ * @throws {Error} If the payload is not a reader or valid buffer
15160
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15161
+ */
15162
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.CreateAudienceExportRequest;
15163
+
15164
+ /**
15165
+ * Decodes a CreateAudienceExportRequest message from the specified reader or buffer, length delimited.
15166
+ * @param reader Reader or buffer to decode from
15167
+ * @returns CreateAudienceExportRequest
15168
+ * @throws {Error} If the payload is not a reader or valid buffer
15169
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15170
+ */
15171
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.CreateAudienceExportRequest;
15172
+
15173
+ /**
15174
+ * Verifies a CreateAudienceExportRequest message.
15175
+ * @param message Plain object to verify
15176
+ * @returns `null` if valid, otherwise the reason why it is not
15177
+ */
15178
+ public static verify(message: { [k: string]: any }): (string|null);
15179
+
15180
+ /**
15181
+ * Creates a CreateAudienceExportRequest message from a plain object. Also converts values to their respective internal types.
15182
+ * @param object Plain object
15183
+ * @returns CreateAudienceExportRequest
15184
+ */
15185
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.CreateAudienceExportRequest;
15186
+
15187
+ /**
15188
+ * Creates a plain object from a CreateAudienceExportRequest message. Also converts values to other types if specified.
15189
+ * @param message CreateAudienceExportRequest
15190
+ * @param [options] Conversion options
15191
+ * @returns Plain object
15192
+ */
15193
+ public static toObject(message: google.analytics.data.v1beta.CreateAudienceExportRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
15194
+
15195
+ /**
15196
+ * Converts this CreateAudienceExportRequest to JSON.
15197
+ * @returns JSON object
15198
+ */
15199
+ public toJSON(): { [k: string]: any };
15200
+
15201
+ /**
15202
+ * Gets the default type url for CreateAudienceExportRequest
15203
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15204
+ * @returns The default type url
15205
+ */
15206
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15207
+ }
15208
+
15209
+ /** Properties of an AudienceExport. */
15210
+ interface IAudienceExport {
15211
+
15212
+ /** AudienceExport name */
15213
+ name?: (string|null);
15214
+
15215
+ /** AudienceExport audience */
15216
+ audience?: (string|null);
15217
+
15218
+ /** AudienceExport audienceDisplayName */
15219
+ audienceDisplayName?: (string|null);
15220
+
15221
+ /** AudienceExport dimensions */
15222
+ dimensions?: (google.analytics.data.v1beta.IAudienceDimension[]|null);
15223
+
15224
+ /** AudienceExport state */
15225
+ state?: (google.analytics.data.v1beta.AudienceExport.State|keyof typeof google.analytics.data.v1beta.AudienceExport.State|null);
15226
+
15227
+ /** AudienceExport beginCreatingTime */
15228
+ beginCreatingTime?: (google.protobuf.ITimestamp|null);
15229
+
15230
+ /** AudienceExport creationQuotaTokensCharged */
15231
+ creationQuotaTokensCharged?: (number|null);
15232
+
15233
+ /** AudienceExport rowCount */
15234
+ rowCount?: (number|null);
15235
+
15236
+ /** AudienceExport errorMessage */
15237
+ errorMessage?: (string|null);
15238
+
15239
+ /** AudienceExport percentageCompleted */
15240
+ percentageCompleted?: (number|null);
15241
+ }
15242
+
15243
+ /** Represents an AudienceExport. */
15244
+ class AudienceExport implements IAudienceExport {
15245
+
15246
+ /**
15247
+ * Constructs a new AudienceExport.
15248
+ * @param [properties] Properties to set
15249
+ */
15250
+ constructor(properties?: google.analytics.data.v1beta.IAudienceExport);
15251
+
15252
+ /** AudienceExport name. */
15253
+ public name: string;
15254
+
15255
+ /** AudienceExport audience. */
15256
+ public audience: string;
15257
+
15258
+ /** AudienceExport audienceDisplayName. */
15259
+ public audienceDisplayName: string;
15260
+
15261
+ /** AudienceExport dimensions. */
15262
+ public dimensions: google.analytics.data.v1beta.IAudienceDimension[];
15263
+
15264
+ /** AudienceExport state. */
15265
+ public state?: (google.analytics.data.v1beta.AudienceExport.State|keyof typeof google.analytics.data.v1beta.AudienceExport.State|null);
15266
+
15267
+ /** AudienceExport beginCreatingTime. */
15268
+ public beginCreatingTime?: (google.protobuf.ITimestamp|null);
15269
+
15270
+ /** AudienceExport creationQuotaTokensCharged. */
15271
+ public creationQuotaTokensCharged: number;
15272
+
15273
+ /** AudienceExport rowCount. */
15274
+ public rowCount?: (number|null);
15275
+
15276
+ /** AudienceExport errorMessage. */
15277
+ public errorMessage?: (string|null);
15278
+
15279
+ /** AudienceExport percentageCompleted. */
15280
+ public percentageCompleted?: (number|null);
15281
+
15282
+ /** AudienceExport _state. */
15283
+ public _state?: "state";
15284
+
15285
+ /** AudienceExport _beginCreatingTime. */
15286
+ public _beginCreatingTime?: "beginCreatingTime";
15287
+
15288
+ /** AudienceExport _rowCount. */
15289
+ public _rowCount?: "rowCount";
15290
+
15291
+ /** AudienceExport _errorMessage. */
15292
+ public _errorMessage?: "errorMessage";
15293
+
15294
+ /** AudienceExport _percentageCompleted. */
15295
+ public _percentageCompleted?: "percentageCompleted";
15296
+
15297
+ /**
15298
+ * Creates a new AudienceExport instance using the specified properties.
15299
+ * @param [properties] Properties to set
15300
+ * @returns AudienceExport instance
15301
+ */
15302
+ public static create(properties?: google.analytics.data.v1beta.IAudienceExport): google.analytics.data.v1beta.AudienceExport;
15303
+
15304
+ /**
15305
+ * Encodes the specified AudienceExport message. Does not implicitly {@link google.analytics.data.v1beta.AudienceExport.verify|verify} messages.
15306
+ * @param message AudienceExport message or plain object to encode
15307
+ * @param [writer] Writer to encode to
15308
+ * @returns Writer
15309
+ */
15310
+ public static encode(message: google.analytics.data.v1beta.IAudienceExport, writer?: $protobuf.Writer): $protobuf.Writer;
15311
+
15312
+ /**
15313
+ * Encodes the specified AudienceExport message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.AudienceExport.verify|verify} messages.
15314
+ * @param message AudienceExport message or plain object to encode
15315
+ * @param [writer] Writer to encode to
15316
+ * @returns Writer
15317
+ */
15318
+ public static encodeDelimited(message: google.analytics.data.v1beta.IAudienceExport, writer?: $protobuf.Writer): $protobuf.Writer;
15319
+
15320
+ /**
15321
+ * Decodes an AudienceExport message from the specified reader or buffer.
15322
+ * @param reader Reader or buffer to decode from
15323
+ * @param [length] Message length if known beforehand
15324
+ * @returns AudienceExport
15325
+ * @throws {Error} If the payload is not a reader or valid buffer
15326
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15327
+ */
15328
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.AudienceExport;
15329
+
15330
+ /**
15331
+ * Decodes an AudienceExport message from the specified reader or buffer, length delimited.
15332
+ * @param reader Reader or buffer to decode from
15333
+ * @returns AudienceExport
15334
+ * @throws {Error} If the payload is not a reader or valid buffer
15335
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15336
+ */
15337
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.AudienceExport;
15338
+
15339
+ /**
15340
+ * Verifies an AudienceExport message.
15341
+ * @param message Plain object to verify
15342
+ * @returns `null` if valid, otherwise the reason why it is not
15343
+ */
15344
+ public static verify(message: { [k: string]: any }): (string|null);
15345
+
15346
+ /**
15347
+ * Creates an AudienceExport message from a plain object. Also converts values to their respective internal types.
15348
+ * @param object Plain object
15349
+ * @returns AudienceExport
15350
+ */
15351
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.AudienceExport;
15352
+
15353
+ /**
15354
+ * Creates a plain object from an AudienceExport message. Also converts values to other types if specified.
15355
+ * @param message AudienceExport
15356
+ * @param [options] Conversion options
15357
+ * @returns Plain object
15358
+ */
15359
+ public static toObject(message: google.analytics.data.v1beta.AudienceExport, options?: $protobuf.IConversionOptions): { [k: string]: any };
15360
+
15361
+ /**
15362
+ * Converts this AudienceExport to JSON.
15363
+ * @returns JSON object
15364
+ */
15365
+ public toJSON(): { [k: string]: any };
15366
+
15367
+ /**
15368
+ * Gets the default type url for AudienceExport
15369
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15370
+ * @returns The default type url
15371
+ */
15372
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15373
+ }
15374
+
15375
+ namespace AudienceExport {
15376
+
15377
+ /** State enum. */
15378
+ enum State {
15379
+ STATE_UNSPECIFIED = 0,
15380
+ CREATING = 1,
15381
+ ACTIVE = 2,
15382
+ FAILED = 3
15383
+ }
15384
+ }
15385
+
15386
+ /** Properties of an AudienceExportMetadata. */
15387
+ interface IAudienceExportMetadata {
15388
+ }
15389
+
15390
+ /** Represents an AudienceExportMetadata. */
15391
+ class AudienceExportMetadata implements IAudienceExportMetadata {
15392
+
15393
+ /**
15394
+ * Constructs a new AudienceExportMetadata.
15395
+ * @param [properties] Properties to set
15396
+ */
15397
+ constructor(properties?: google.analytics.data.v1beta.IAudienceExportMetadata);
15398
+
15399
+ /**
15400
+ * Creates a new AudienceExportMetadata instance using the specified properties.
15401
+ * @param [properties] Properties to set
15402
+ * @returns AudienceExportMetadata instance
15403
+ */
15404
+ public static create(properties?: google.analytics.data.v1beta.IAudienceExportMetadata): google.analytics.data.v1beta.AudienceExportMetadata;
15405
+
15406
+ /**
15407
+ * Encodes the specified AudienceExportMetadata message. Does not implicitly {@link google.analytics.data.v1beta.AudienceExportMetadata.verify|verify} messages.
15408
+ * @param message AudienceExportMetadata message or plain object to encode
15409
+ * @param [writer] Writer to encode to
15410
+ * @returns Writer
15411
+ */
15412
+ public static encode(message: google.analytics.data.v1beta.IAudienceExportMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
15413
+
15414
+ /**
15415
+ * Encodes the specified AudienceExportMetadata message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.AudienceExportMetadata.verify|verify} messages.
15416
+ * @param message AudienceExportMetadata message or plain object to encode
15417
+ * @param [writer] Writer to encode to
15418
+ * @returns Writer
15419
+ */
15420
+ public static encodeDelimited(message: google.analytics.data.v1beta.IAudienceExportMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
15421
+
15422
+ /**
15423
+ * Decodes an AudienceExportMetadata message from the specified reader or buffer.
15424
+ * @param reader Reader or buffer to decode from
15425
+ * @param [length] Message length if known beforehand
15426
+ * @returns AudienceExportMetadata
15427
+ * @throws {Error} If the payload is not a reader or valid buffer
15428
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15429
+ */
15430
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.AudienceExportMetadata;
15431
+
15432
+ /**
15433
+ * Decodes an AudienceExportMetadata message from the specified reader or buffer, length delimited.
15434
+ * @param reader Reader or buffer to decode from
15435
+ * @returns AudienceExportMetadata
15436
+ * @throws {Error} If the payload is not a reader or valid buffer
15437
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15438
+ */
15439
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.AudienceExportMetadata;
15440
+
15441
+ /**
15442
+ * Verifies an AudienceExportMetadata message.
15443
+ * @param message Plain object to verify
15444
+ * @returns `null` if valid, otherwise the reason why it is not
15445
+ */
15446
+ public static verify(message: { [k: string]: any }): (string|null);
15447
+
15448
+ /**
15449
+ * Creates an AudienceExportMetadata message from a plain object. Also converts values to their respective internal types.
15450
+ * @param object Plain object
15451
+ * @returns AudienceExportMetadata
15452
+ */
15453
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.AudienceExportMetadata;
15454
+
15455
+ /**
15456
+ * Creates a plain object from an AudienceExportMetadata message. Also converts values to other types if specified.
15457
+ * @param message AudienceExportMetadata
15458
+ * @param [options] Conversion options
15459
+ * @returns Plain object
15460
+ */
15461
+ public static toObject(message: google.analytics.data.v1beta.AudienceExportMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
15462
+
15463
+ /**
15464
+ * Converts this AudienceExportMetadata to JSON.
15465
+ * @returns JSON object
15466
+ */
15467
+ public toJSON(): { [k: string]: any };
15468
+
15469
+ /**
15470
+ * Gets the default type url for AudienceExportMetadata
15471
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15472
+ * @returns The default type url
15473
+ */
15474
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15475
+ }
15476
+
15477
+ /** Properties of a QueryAudienceExportRequest. */
15478
+ interface IQueryAudienceExportRequest {
15479
+
15480
+ /** QueryAudienceExportRequest name */
15481
+ name?: (string|null);
15482
+
15483
+ /** QueryAudienceExportRequest offset */
15484
+ offset?: (number|Long|string|null);
15485
+
15486
+ /** QueryAudienceExportRequest limit */
15487
+ limit?: (number|Long|string|null);
15488
+ }
15489
+
15490
+ /** Represents a QueryAudienceExportRequest. */
15491
+ class QueryAudienceExportRequest implements IQueryAudienceExportRequest {
15492
+
15493
+ /**
15494
+ * Constructs a new QueryAudienceExportRequest.
15495
+ * @param [properties] Properties to set
15496
+ */
15497
+ constructor(properties?: google.analytics.data.v1beta.IQueryAudienceExportRequest);
15498
+
15499
+ /** QueryAudienceExportRequest name. */
15500
+ public name: string;
15501
+
15502
+ /** QueryAudienceExportRequest offset. */
15503
+ public offset: (number|Long|string);
15504
+
15505
+ /** QueryAudienceExportRequest limit. */
15506
+ public limit: (number|Long|string);
15507
+
15508
+ /**
15509
+ * Creates a new QueryAudienceExportRequest instance using the specified properties.
15510
+ * @param [properties] Properties to set
15511
+ * @returns QueryAudienceExportRequest instance
15512
+ */
15513
+ public static create(properties?: google.analytics.data.v1beta.IQueryAudienceExportRequest): google.analytics.data.v1beta.QueryAudienceExportRequest;
15514
+
15515
+ /**
15516
+ * Encodes the specified QueryAudienceExportRequest message. Does not implicitly {@link google.analytics.data.v1beta.QueryAudienceExportRequest.verify|verify} messages.
15517
+ * @param message QueryAudienceExportRequest message or plain object to encode
15518
+ * @param [writer] Writer to encode to
15519
+ * @returns Writer
15520
+ */
15521
+ public static encode(message: google.analytics.data.v1beta.IQueryAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15522
+
15523
+ /**
15524
+ * Encodes the specified QueryAudienceExportRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.QueryAudienceExportRequest.verify|verify} messages.
15525
+ * @param message QueryAudienceExportRequest message or plain object to encode
15526
+ * @param [writer] Writer to encode to
15527
+ * @returns Writer
15528
+ */
15529
+ public static encodeDelimited(message: google.analytics.data.v1beta.IQueryAudienceExportRequest, writer?: $protobuf.Writer): $protobuf.Writer;
15530
+
15531
+ /**
15532
+ * Decodes a QueryAudienceExportRequest message from the specified reader or buffer.
15533
+ * @param reader Reader or buffer to decode from
15534
+ * @param [length] Message length if known beforehand
15535
+ * @returns QueryAudienceExportRequest
15536
+ * @throws {Error} If the payload is not a reader or valid buffer
15537
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15538
+ */
15539
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.QueryAudienceExportRequest;
15540
+
15541
+ /**
15542
+ * Decodes a QueryAudienceExportRequest message from the specified reader or buffer, length delimited.
15543
+ * @param reader Reader or buffer to decode from
15544
+ * @returns QueryAudienceExportRequest
15545
+ * @throws {Error} If the payload is not a reader or valid buffer
15546
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15547
+ */
15548
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.QueryAudienceExportRequest;
15549
+
15550
+ /**
15551
+ * Verifies a QueryAudienceExportRequest message.
15552
+ * @param message Plain object to verify
15553
+ * @returns `null` if valid, otherwise the reason why it is not
15554
+ */
15555
+ public static verify(message: { [k: string]: any }): (string|null);
15556
+
15557
+ /**
15558
+ * Creates a QueryAudienceExportRequest message from a plain object. Also converts values to their respective internal types.
15559
+ * @param object Plain object
15560
+ * @returns QueryAudienceExportRequest
15561
+ */
15562
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.QueryAudienceExportRequest;
15563
+
15564
+ /**
15565
+ * Creates a plain object from a QueryAudienceExportRequest message. Also converts values to other types if specified.
15566
+ * @param message QueryAudienceExportRequest
15567
+ * @param [options] Conversion options
15568
+ * @returns Plain object
15569
+ */
15570
+ public static toObject(message: google.analytics.data.v1beta.QueryAudienceExportRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
15571
+
15572
+ /**
15573
+ * Converts this QueryAudienceExportRequest to JSON.
15574
+ * @returns JSON object
15575
+ */
15576
+ public toJSON(): { [k: string]: any };
15577
+
15578
+ /**
15579
+ * Gets the default type url for QueryAudienceExportRequest
15580
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15581
+ * @returns The default type url
15582
+ */
15583
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15584
+ }
15585
+
15586
+ /** Properties of a QueryAudienceExportResponse. */
15587
+ interface IQueryAudienceExportResponse {
15588
+
15589
+ /** QueryAudienceExportResponse audienceExport */
15590
+ audienceExport?: (google.analytics.data.v1beta.IAudienceExport|null);
15591
+
15592
+ /** QueryAudienceExportResponse audienceRows */
15593
+ audienceRows?: (google.analytics.data.v1beta.IAudienceRow[]|null);
15594
+
15595
+ /** QueryAudienceExportResponse rowCount */
15596
+ rowCount?: (number|null);
15597
+ }
15598
+
15599
+ /** Represents a QueryAudienceExportResponse. */
15600
+ class QueryAudienceExportResponse implements IQueryAudienceExportResponse {
15601
+
15602
+ /**
15603
+ * Constructs a new QueryAudienceExportResponse.
15604
+ * @param [properties] Properties to set
15605
+ */
15606
+ constructor(properties?: google.analytics.data.v1beta.IQueryAudienceExportResponse);
15607
+
15608
+ /** QueryAudienceExportResponse audienceExport. */
15609
+ public audienceExport?: (google.analytics.data.v1beta.IAudienceExport|null);
15610
+
15611
+ /** QueryAudienceExportResponse audienceRows. */
15612
+ public audienceRows: google.analytics.data.v1beta.IAudienceRow[];
15613
+
15614
+ /** QueryAudienceExportResponse rowCount. */
15615
+ public rowCount?: (number|null);
15616
+
15617
+ /** QueryAudienceExportResponse _audienceExport. */
15618
+ public _audienceExport?: "audienceExport";
15619
+
15620
+ /** QueryAudienceExportResponse _rowCount. */
15621
+ public _rowCount?: "rowCount";
15622
+
15623
+ /**
15624
+ * Creates a new QueryAudienceExportResponse instance using the specified properties.
15625
+ * @param [properties] Properties to set
15626
+ * @returns QueryAudienceExportResponse instance
15627
+ */
15628
+ public static create(properties?: google.analytics.data.v1beta.IQueryAudienceExportResponse): google.analytics.data.v1beta.QueryAudienceExportResponse;
15629
+
15630
+ /**
15631
+ * Encodes the specified QueryAudienceExportResponse message. Does not implicitly {@link google.analytics.data.v1beta.QueryAudienceExportResponse.verify|verify} messages.
15632
+ * @param message QueryAudienceExportResponse message or plain object to encode
15633
+ * @param [writer] Writer to encode to
15634
+ * @returns Writer
15635
+ */
15636
+ public static encode(message: google.analytics.data.v1beta.IQueryAudienceExportResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15637
+
15638
+ /**
15639
+ * Encodes the specified QueryAudienceExportResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.QueryAudienceExportResponse.verify|verify} messages.
15640
+ * @param message QueryAudienceExportResponse message or plain object to encode
15641
+ * @param [writer] Writer to encode to
15642
+ * @returns Writer
15643
+ */
15644
+ public static encodeDelimited(message: google.analytics.data.v1beta.IQueryAudienceExportResponse, writer?: $protobuf.Writer): $protobuf.Writer;
15645
+
15646
+ /**
15647
+ * Decodes a QueryAudienceExportResponse message from the specified reader or buffer.
15648
+ * @param reader Reader or buffer to decode from
15649
+ * @param [length] Message length if known beforehand
15650
+ * @returns QueryAudienceExportResponse
15651
+ * @throws {Error} If the payload is not a reader or valid buffer
15652
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15653
+ */
15654
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.QueryAudienceExportResponse;
15655
+
15656
+ /**
15657
+ * Decodes a QueryAudienceExportResponse message from the specified reader or buffer, length delimited.
15658
+ * @param reader Reader or buffer to decode from
15659
+ * @returns QueryAudienceExportResponse
15660
+ * @throws {Error} If the payload is not a reader or valid buffer
15661
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15662
+ */
15663
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.QueryAudienceExportResponse;
15664
+
15665
+ /**
15666
+ * Verifies a QueryAudienceExportResponse message.
15667
+ * @param message Plain object to verify
15668
+ * @returns `null` if valid, otherwise the reason why it is not
15669
+ */
15670
+ public static verify(message: { [k: string]: any }): (string|null);
15671
+
15672
+ /**
15673
+ * Creates a QueryAudienceExportResponse message from a plain object. Also converts values to their respective internal types.
15674
+ * @param object Plain object
15675
+ * @returns QueryAudienceExportResponse
15676
+ */
15677
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.QueryAudienceExportResponse;
15678
+
15679
+ /**
15680
+ * Creates a plain object from a QueryAudienceExportResponse message. Also converts values to other types if specified.
15681
+ * @param message QueryAudienceExportResponse
15682
+ * @param [options] Conversion options
15683
+ * @returns Plain object
15684
+ */
15685
+ public static toObject(message: google.analytics.data.v1beta.QueryAudienceExportResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
15686
+
15687
+ /**
15688
+ * Converts this QueryAudienceExportResponse to JSON.
15689
+ * @returns JSON object
15690
+ */
15691
+ public toJSON(): { [k: string]: any };
15692
+
15693
+ /**
15694
+ * Gets the default type url for QueryAudienceExportResponse
15695
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15696
+ * @returns The default type url
15697
+ */
15698
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15699
+ }
15700
+
15701
+ /** Properties of an AudienceRow. */
15702
+ interface IAudienceRow {
15703
+
15704
+ /** AudienceRow dimensionValues */
15705
+ dimensionValues?: (google.analytics.data.v1beta.IAudienceDimensionValue[]|null);
15706
+ }
15707
+
15708
+ /** Represents an AudienceRow. */
15709
+ class AudienceRow implements IAudienceRow {
15710
+
15711
+ /**
15712
+ * Constructs a new AudienceRow.
15713
+ * @param [properties] Properties to set
15714
+ */
15715
+ constructor(properties?: google.analytics.data.v1beta.IAudienceRow);
15716
+
15717
+ /** AudienceRow dimensionValues. */
15718
+ public dimensionValues: google.analytics.data.v1beta.IAudienceDimensionValue[];
15719
+
15720
+ /**
15721
+ * Creates a new AudienceRow instance using the specified properties.
15722
+ * @param [properties] Properties to set
15723
+ * @returns AudienceRow instance
15724
+ */
15725
+ public static create(properties?: google.analytics.data.v1beta.IAudienceRow): google.analytics.data.v1beta.AudienceRow;
15726
+
15727
+ /**
15728
+ * Encodes the specified AudienceRow message. Does not implicitly {@link google.analytics.data.v1beta.AudienceRow.verify|verify} messages.
15729
+ * @param message AudienceRow message or plain object to encode
15730
+ * @param [writer] Writer to encode to
15731
+ * @returns Writer
15732
+ */
15733
+ public static encode(message: google.analytics.data.v1beta.IAudienceRow, writer?: $protobuf.Writer): $protobuf.Writer;
15734
+
15735
+ /**
15736
+ * Encodes the specified AudienceRow message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.AudienceRow.verify|verify} messages.
15737
+ * @param message AudienceRow message or plain object to encode
15738
+ * @param [writer] Writer to encode to
15739
+ * @returns Writer
15740
+ */
15741
+ public static encodeDelimited(message: google.analytics.data.v1beta.IAudienceRow, writer?: $protobuf.Writer): $protobuf.Writer;
15742
+
15743
+ /**
15744
+ * Decodes an AudienceRow message from the specified reader or buffer.
15745
+ * @param reader Reader or buffer to decode from
15746
+ * @param [length] Message length if known beforehand
15747
+ * @returns AudienceRow
15748
+ * @throws {Error} If the payload is not a reader or valid buffer
15749
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15750
+ */
15751
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.AudienceRow;
15752
+
15753
+ /**
15754
+ * Decodes an AudienceRow message from the specified reader or buffer, length delimited.
15755
+ * @param reader Reader or buffer to decode from
15756
+ * @returns AudienceRow
15757
+ * @throws {Error} If the payload is not a reader or valid buffer
15758
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15759
+ */
15760
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.AudienceRow;
15761
+
15762
+ /**
15763
+ * Verifies an AudienceRow message.
15764
+ * @param message Plain object to verify
15765
+ * @returns `null` if valid, otherwise the reason why it is not
15766
+ */
15767
+ public static verify(message: { [k: string]: any }): (string|null);
15768
+
15769
+ /**
15770
+ * Creates an AudienceRow message from a plain object. Also converts values to their respective internal types.
15771
+ * @param object Plain object
15772
+ * @returns AudienceRow
15773
+ */
15774
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.AudienceRow;
15775
+
15776
+ /**
15777
+ * Creates a plain object from an AudienceRow message. Also converts values to other types if specified.
15778
+ * @param message AudienceRow
15779
+ * @param [options] Conversion options
15780
+ * @returns Plain object
15781
+ */
15782
+ public static toObject(message: google.analytics.data.v1beta.AudienceRow, options?: $protobuf.IConversionOptions): { [k: string]: any };
15783
+
15784
+ /**
15785
+ * Converts this AudienceRow to JSON.
15786
+ * @returns JSON object
15787
+ */
15788
+ public toJSON(): { [k: string]: any };
15789
+
15790
+ /**
15791
+ * Gets the default type url for AudienceRow
15792
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15793
+ * @returns The default type url
15794
+ */
15795
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15796
+ }
15797
+
15798
+ /** Properties of an AudienceDimension. */
15799
+ interface IAudienceDimension {
15800
+
15801
+ /** AudienceDimension dimensionName */
15802
+ dimensionName?: (string|null);
15803
+ }
15804
+
15805
+ /** Represents an AudienceDimension. */
15806
+ class AudienceDimension implements IAudienceDimension {
15807
+
15808
+ /**
15809
+ * Constructs a new AudienceDimension.
15810
+ * @param [properties] Properties to set
15811
+ */
15812
+ constructor(properties?: google.analytics.data.v1beta.IAudienceDimension);
15813
+
15814
+ /** AudienceDimension dimensionName. */
15815
+ public dimensionName: string;
15816
+
15817
+ /**
15818
+ * Creates a new AudienceDimension instance using the specified properties.
15819
+ * @param [properties] Properties to set
15820
+ * @returns AudienceDimension instance
15821
+ */
15822
+ public static create(properties?: google.analytics.data.v1beta.IAudienceDimension): google.analytics.data.v1beta.AudienceDimension;
15823
+
15824
+ /**
15825
+ * Encodes the specified AudienceDimension message. Does not implicitly {@link google.analytics.data.v1beta.AudienceDimension.verify|verify} messages.
15826
+ * @param message AudienceDimension message or plain object to encode
15827
+ * @param [writer] Writer to encode to
15828
+ * @returns Writer
15829
+ */
15830
+ public static encode(message: google.analytics.data.v1beta.IAudienceDimension, writer?: $protobuf.Writer): $protobuf.Writer;
15831
+
15832
+ /**
15833
+ * Encodes the specified AudienceDimension message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.AudienceDimension.verify|verify} messages.
15834
+ * @param message AudienceDimension message or plain object to encode
15835
+ * @param [writer] Writer to encode to
15836
+ * @returns Writer
15837
+ */
15838
+ public static encodeDelimited(message: google.analytics.data.v1beta.IAudienceDimension, writer?: $protobuf.Writer): $protobuf.Writer;
15839
+
15840
+ /**
15841
+ * Decodes an AudienceDimension message from the specified reader or buffer.
15842
+ * @param reader Reader or buffer to decode from
15843
+ * @param [length] Message length if known beforehand
15844
+ * @returns AudienceDimension
15845
+ * @throws {Error} If the payload is not a reader or valid buffer
15846
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15847
+ */
15848
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.AudienceDimension;
15849
+
15850
+ /**
15851
+ * Decodes an AudienceDimension message from the specified reader or buffer, length delimited.
15852
+ * @param reader Reader or buffer to decode from
15853
+ * @returns AudienceDimension
15854
+ * @throws {Error} If the payload is not a reader or valid buffer
15855
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15856
+ */
15857
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.AudienceDimension;
15858
+
15859
+ /**
15860
+ * Verifies an AudienceDimension message.
15861
+ * @param message Plain object to verify
15862
+ * @returns `null` if valid, otherwise the reason why it is not
15863
+ */
15864
+ public static verify(message: { [k: string]: any }): (string|null);
15865
+
15866
+ /**
15867
+ * Creates an AudienceDimension message from a plain object. Also converts values to their respective internal types.
15868
+ * @param object Plain object
15869
+ * @returns AudienceDimension
15870
+ */
15871
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.AudienceDimension;
15872
+
15873
+ /**
15874
+ * Creates a plain object from an AudienceDimension message. Also converts values to other types if specified.
15875
+ * @param message AudienceDimension
15876
+ * @param [options] Conversion options
15877
+ * @returns Plain object
15878
+ */
15879
+ public static toObject(message: google.analytics.data.v1beta.AudienceDimension, options?: $protobuf.IConversionOptions): { [k: string]: any };
15880
+
15881
+ /**
15882
+ * Converts this AudienceDimension to JSON.
15883
+ * @returns JSON object
15884
+ */
15885
+ public toJSON(): { [k: string]: any };
15886
+
15887
+ /**
15888
+ * Gets the default type url for AudienceDimension
15889
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15890
+ * @returns The default type url
15891
+ */
15892
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15893
+ }
15894
+
15895
+ /** Properties of an AudienceDimensionValue. */
15896
+ interface IAudienceDimensionValue {
15897
+
15898
+ /** AudienceDimensionValue value */
15899
+ value?: (string|null);
15900
+ }
15901
+
15902
+ /** Represents an AudienceDimensionValue. */
15903
+ class AudienceDimensionValue implements IAudienceDimensionValue {
15904
+
15905
+ /**
15906
+ * Constructs a new AudienceDimensionValue.
15907
+ * @param [properties] Properties to set
15908
+ */
15909
+ constructor(properties?: google.analytics.data.v1beta.IAudienceDimensionValue);
15910
+
15911
+ /** AudienceDimensionValue value. */
15912
+ public value?: (string|null);
15913
+
15914
+ /** AudienceDimensionValue oneValue. */
15915
+ public oneValue?: "value";
15916
+
15917
+ /**
15918
+ * Creates a new AudienceDimensionValue instance using the specified properties.
15919
+ * @param [properties] Properties to set
15920
+ * @returns AudienceDimensionValue instance
15921
+ */
15922
+ public static create(properties?: google.analytics.data.v1beta.IAudienceDimensionValue): google.analytics.data.v1beta.AudienceDimensionValue;
15923
+
15924
+ /**
15925
+ * Encodes the specified AudienceDimensionValue message. Does not implicitly {@link google.analytics.data.v1beta.AudienceDimensionValue.verify|verify} messages.
15926
+ * @param message AudienceDimensionValue message or plain object to encode
15927
+ * @param [writer] Writer to encode to
15928
+ * @returns Writer
15929
+ */
15930
+ public static encode(message: google.analytics.data.v1beta.IAudienceDimensionValue, writer?: $protobuf.Writer): $protobuf.Writer;
15931
+
15932
+ /**
15933
+ * Encodes the specified AudienceDimensionValue message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.AudienceDimensionValue.verify|verify} messages.
15934
+ * @param message AudienceDimensionValue message or plain object to encode
15935
+ * @param [writer] Writer to encode to
15936
+ * @returns Writer
15937
+ */
15938
+ public static encodeDelimited(message: google.analytics.data.v1beta.IAudienceDimensionValue, writer?: $protobuf.Writer): $protobuf.Writer;
15939
+
15940
+ /**
15941
+ * Decodes an AudienceDimensionValue message from the specified reader or buffer.
15942
+ * @param reader Reader or buffer to decode from
15943
+ * @param [length] Message length if known beforehand
15944
+ * @returns AudienceDimensionValue
15945
+ * @throws {Error} If the payload is not a reader or valid buffer
15946
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15947
+ */
15948
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.AudienceDimensionValue;
15949
+
15950
+ /**
15951
+ * Decodes an AudienceDimensionValue message from the specified reader or buffer, length delimited.
15952
+ * @param reader Reader or buffer to decode from
15953
+ * @returns AudienceDimensionValue
15954
+ * @throws {Error} If the payload is not a reader or valid buffer
15955
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
15956
+ */
15957
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.AudienceDimensionValue;
15958
+
15959
+ /**
15960
+ * Verifies an AudienceDimensionValue message.
15961
+ * @param message Plain object to verify
15962
+ * @returns `null` if valid, otherwise the reason why it is not
15963
+ */
15964
+ public static verify(message: { [k: string]: any }): (string|null);
15965
+
15966
+ /**
15967
+ * Creates an AudienceDimensionValue message from a plain object. Also converts values to their respective internal types.
15968
+ * @param object Plain object
15969
+ * @returns AudienceDimensionValue
15970
+ */
15971
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.AudienceDimensionValue;
15972
+
15973
+ /**
15974
+ * Creates a plain object from an AudienceDimensionValue message. Also converts values to other types if specified.
15975
+ * @param message AudienceDimensionValue
15976
+ * @param [options] Conversion options
15977
+ * @returns Plain object
15978
+ */
15979
+ public static toObject(message: google.analytics.data.v1beta.AudienceDimensionValue, options?: $protobuf.IConversionOptions): { [k: string]: any };
15980
+
15981
+ /**
15982
+ * Converts this AudienceDimensionValue to JSON.
15983
+ * @returns JSON object
15984
+ */
15985
+ public toJSON(): { [k: string]: any };
15986
+
15987
+ /**
15988
+ * Gets the default type url for AudienceDimensionValue
15989
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
15990
+ * @returns The default type url
15991
+ */
15992
+ public static getTypeUrl(typeUrlPrefix?: string): string;
15993
+ }
15994
+
15995
+ /** Properties of a DateRange. */
15996
+ interface IDateRange {
15997
+
15998
+ /** DateRange startDate */
15999
+ startDate?: (string|null);
16000
+
16001
+ /** DateRange endDate */
16002
+ endDate?: (string|null);
16003
+
16004
+ /** DateRange name */
16005
+ name?: (string|null);
16006
+ }
16007
+
16008
+ /** Represents a DateRange. */
16009
+ class DateRange implements IDateRange {
16010
+
16011
+ /**
16012
+ * Constructs a new DateRange.
16013
+ * @param [properties] Properties to set
16014
+ */
16015
+ constructor(properties?: google.analytics.data.v1beta.IDateRange);
16016
+
16017
+ /** DateRange startDate. */
16018
+ public startDate: string;
16019
+
16020
+ /** DateRange endDate. */
16021
+ public endDate: string;
16022
+
16023
+ /** DateRange name. */
16024
+ public name: string;
16025
+
16026
+ /**
16027
+ * Creates a new DateRange instance using the specified properties.
16028
+ * @param [properties] Properties to set
16029
+ * @returns DateRange instance
16030
+ */
16031
+ public static create(properties?: google.analytics.data.v1beta.IDateRange): google.analytics.data.v1beta.DateRange;
16032
+
16033
+ /**
16034
+ * Encodes the specified DateRange message. Does not implicitly {@link google.analytics.data.v1beta.DateRange.verify|verify} messages.
16035
+ * @param message DateRange message or plain object to encode
16036
+ * @param [writer] Writer to encode to
16037
+ * @returns Writer
16038
+ */
16039
+ public static encode(message: google.analytics.data.v1beta.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
16040
+
16041
+ /**
16042
+ * Encodes the specified DateRange message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.DateRange.verify|verify} messages.
16043
+ * @param message DateRange message or plain object to encode
16044
+ * @param [writer] Writer to encode to
16045
+ * @returns Writer
16046
+ */
16047
+ public static encodeDelimited(message: google.analytics.data.v1beta.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
16048
+
16049
+ /**
16050
+ * Decodes a DateRange message from the specified reader or buffer.
16051
+ * @param reader Reader or buffer to decode from
16052
+ * @param [length] Message length if known beforehand
16053
+ * @returns DateRange
16054
+ * @throws {Error} If the payload is not a reader or valid buffer
16055
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16056
+ */
16057
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.DateRange;
16058
+
16059
+ /**
16060
+ * Decodes a DateRange message from the specified reader or buffer, length delimited.
16061
+ * @param reader Reader or buffer to decode from
16062
+ * @returns DateRange
16063
+ * @throws {Error} If the payload is not a reader or valid buffer
16064
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16065
+ */
16066
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.DateRange;
16067
+
16068
+ /**
16069
+ * Verifies a DateRange message.
16070
+ * @param message Plain object to verify
16071
+ * @returns `null` if valid, otherwise the reason why it is not
16072
+ */
16073
+ public static verify(message: { [k: string]: any }): (string|null);
16074
+
16075
+ /**
16076
+ * Creates a DateRange message from a plain object. Also converts values to their respective internal types.
16077
+ * @param object Plain object
16078
+ * @returns DateRange
16079
+ */
16080
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.DateRange;
16081
+
16082
+ /**
16083
+ * Creates a plain object from a DateRange message. Also converts values to other types if specified.
16084
+ * @param message DateRange
16085
+ * @param [options] Conversion options
16086
+ * @returns Plain object
16087
+ */
16088
+ public static toObject(message: google.analytics.data.v1beta.DateRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
16089
+
16090
+ /**
16091
+ * Converts this DateRange to JSON.
16092
+ * @returns JSON object
16093
+ */
16094
+ public toJSON(): { [k: string]: any };
16095
+
16096
+ /**
16097
+ * Gets the default type url for DateRange
16098
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
16099
+ * @returns The default type url
16100
+ */
16101
+ public static getTypeUrl(typeUrlPrefix?: string): string;
16102
+ }
16103
+
16104
+ /** Properties of a MinuteRange. */
16105
+ interface IMinuteRange {
16106
+
16107
+ /** MinuteRange startMinutesAgo */
16108
+ startMinutesAgo?: (number|null);
16109
+
16110
+ /** MinuteRange endMinutesAgo */
16111
+ endMinutesAgo?: (number|null);
16112
+
16113
+ /** MinuteRange name */
16114
+ name?: (string|null);
16115
+ }
16116
+
16117
+ /** Represents a MinuteRange. */
16118
+ class MinuteRange implements IMinuteRange {
16119
+
16120
+ /**
16121
+ * Constructs a new MinuteRange.
16122
+ * @param [properties] Properties to set
16123
+ */
16124
+ constructor(properties?: google.analytics.data.v1beta.IMinuteRange);
16125
+
16126
+ /** MinuteRange startMinutesAgo. */
16127
+ public startMinutesAgo?: (number|null);
16128
+
16129
+ /** MinuteRange endMinutesAgo. */
16130
+ public endMinutesAgo?: (number|null);
16131
+
16132
+ /** MinuteRange name. */
16133
+ public name: string;
16134
+
16135
+ /** MinuteRange _startMinutesAgo. */
16136
+ public _startMinutesAgo?: "startMinutesAgo";
16137
+
16138
+ /** MinuteRange _endMinutesAgo. */
16139
+ public _endMinutesAgo?: "endMinutesAgo";
16140
+
16141
+ /**
16142
+ * Creates a new MinuteRange instance using the specified properties.
16143
+ * @param [properties] Properties to set
16144
+ * @returns MinuteRange instance
16145
+ */
16146
+ public static create(properties?: google.analytics.data.v1beta.IMinuteRange): google.analytics.data.v1beta.MinuteRange;
16147
+
16148
+ /**
16149
+ * Encodes the specified MinuteRange message. Does not implicitly {@link google.analytics.data.v1beta.MinuteRange.verify|verify} messages.
16150
+ * @param message MinuteRange message or plain object to encode
16151
+ * @param [writer] Writer to encode to
16152
+ * @returns Writer
16153
+ */
16154
+ public static encode(message: google.analytics.data.v1beta.IMinuteRange, writer?: $protobuf.Writer): $protobuf.Writer;
16155
+
16156
+ /**
16157
+ * Encodes the specified MinuteRange message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.MinuteRange.verify|verify} messages.
16158
+ * @param message MinuteRange message or plain object to encode
16159
+ * @param [writer] Writer to encode to
16160
+ * @returns Writer
16161
+ */
16162
+ public static encodeDelimited(message: google.analytics.data.v1beta.IMinuteRange, writer?: $protobuf.Writer): $protobuf.Writer;
16163
+
16164
+ /**
16165
+ * Decodes a MinuteRange message from the specified reader or buffer.
16166
+ * @param reader Reader or buffer to decode from
16167
+ * @param [length] Message length if known beforehand
16168
+ * @returns MinuteRange
16169
+ * @throws {Error} If the payload is not a reader or valid buffer
16170
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16171
+ */
16172
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.MinuteRange;
16173
+
16174
+ /**
16175
+ * Decodes a MinuteRange message from the specified reader or buffer, length delimited.
16176
+ * @param reader Reader or buffer to decode from
16177
+ * @returns MinuteRange
16178
+ * @throws {Error} If the payload is not a reader or valid buffer
16179
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16180
+ */
16181
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.MinuteRange;
16182
+
16183
+ /**
16184
+ * Verifies a MinuteRange message.
16185
+ * @param message Plain object to verify
16186
+ * @returns `null` if valid, otherwise the reason why it is not
16187
+ */
16188
+ public static verify(message: { [k: string]: any }): (string|null);
16189
+
16190
+ /**
16191
+ * Creates a MinuteRange message from a plain object. Also converts values to their respective internal types.
16192
+ * @param object Plain object
16193
+ * @returns MinuteRange
16194
+ */
16195
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.MinuteRange;
16196
+
16197
+ /**
16198
+ * Creates a plain object from a MinuteRange message. Also converts values to other types if specified.
16199
+ * @param message MinuteRange
16200
+ * @param [options] Conversion options
16201
+ * @returns Plain object
16202
+ */
16203
+ public static toObject(message: google.analytics.data.v1beta.MinuteRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
16204
+
16205
+ /**
16206
+ * Converts this MinuteRange to JSON.
16207
+ * @returns JSON object
16208
+ */
16209
+ public toJSON(): { [k: string]: any };
16210
+
16211
+ /**
16212
+ * Gets the default type url for MinuteRange
16213
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
16214
+ * @returns The default type url
16215
+ */
16216
+ public static getTypeUrl(typeUrlPrefix?: string): string;
16217
+ }
16218
+
16219
+ /** Properties of a Dimension. */
16220
+ interface IDimension {
16221
+
16222
+ /** Dimension name */
16223
+ name?: (string|null);
16224
+
16225
+ /** Dimension dimensionExpression */
16226
+ dimensionExpression?: (google.analytics.data.v1beta.IDimensionExpression|null);
16227
+ }
16228
+
16229
+ /** Represents a Dimension. */
16230
+ class Dimension implements IDimension {
16231
+
16232
+ /**
16233
+ * Constructs a new Dimension.
16234
+ * @param [properties] Properties to set
16235
+ */
16236
+ constructor(properties?: google.analytics.data.v1beta.IDimension);
16237
+
16238
+ /** Dimension name. */
16239
+ public name: string;
16240
+
16241
+ /** Dimension dimensionExpression. */
16242
+ public dimensionExpression?: (google.analytics.data.v1beta.IDimensionExpression|null);
16243
+
16244
+ /**
16245
+ * Creates a new Dimension instance using the specified properties.
16246
+ * @param [properties] Properties to set
16247
+ * @returns Dimension instance
16248
+ */
16249
+ public static create(properties?: google.analytics.data.v1beta.IDimension): google.analytics.data.v1beta.Dimension;
16250
+
16251
+ /**
16252
+ * Encodes the specified Dimension message. Does not implicitly {@link google.analytics.data.v1beta.Dimension.verify|verify} messages.
16253
+ * @param message Dimension message or plain object to encode
16254
+ * @param [writer] Writer to encode to
16255
+ * @returns Writer
16256
+ */
16257
+ public static encode(message: google.analytics.data.v1beta.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
16258
+
16259
+ /**
16260
+ * Encodes the specified Dimension message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.Dimension.verify|verify} messages.
16261
+ * @param message Dimension message or plain object to encode
16262
+ * @param [writer] Writer to encode to
16263
+ * @returns Writer
16264
+ */
16265
+ public static encodeDelimited(message: google.analytics.data.v1beta.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
16266
+
16267
+ /**
16268
+ * Decodes a Dimension message from the specified reader or buffer.
16269
+ * @param reader Reader or buffer to decode from
16270
+ * @param [length] Message length if known beforehand
16271
+ * @returns Dimension
16272
+ * @throws {Error} If the payload is not a reader or valid buffer
16273
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16274
+ */
16275
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.Dimension;
16276
+
16277
+ /**
16278
+ * Decodes a Dimension message from the specified reader or buffer, length delimited.
16279
+ * @param reader Reader or buffer to decode from
16280
+ * @returns Dimension
16281
+ * @throws {Error} If the payload is not a reader or valid buffer
16282
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
16283
+ */
16284
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.Dimension;
16285
+
16286
+ /**
16287
+ * Verifies a Dimension message.
16288
+ * @param message Plain object to verify
16289
+ * @returns `null` if valid, otherwise the reason why it is not
16290
+ */
16291
+ public static verify(message: { [k: string]: any }): (string|null);
16292
+
16293
+ /**
16294
+ * Creates a Dimension message from a plain object. Also converts values to their respective internal types.
16295
+ * @param object Plain object
16296
+ * @returns Dimension
16297
+ */
16298
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.Dimension;
16299
+
16300
+ /**
16301
+ * Creates a plain object from a Dimension message. Also converts values to other types if specified.
16302
+ * @param message Dimension
14891
16303
  * @param [options] Conversion options
14892
16304
  * @returns Plain object
14893
16305
  */
@@ -17235,6 +18647,9 @@ export namespace google {
17235
18647
 
17236
18648
  /** ResponseMetaData subjectToThresholding */
17237
18649
  subjectToThresholding?: (boolean|null);
18650
+
18651
+ /** ResponseMetaData samplingMetadatas */
18652
+ samplingMetadatas?: (google.analytics.data.v1beta.ISamplingMetadata[]|null);
17238
18653
  }
17239
18654
 
17240
18655
  /** Represents a ResponseMetaData. */
@@ -17264,6 +18679,9 @@ export namespace google {
17264
18679
  /** ResponseMetaData subjectToThresholding. */
17265
18680
  public subjectToThresholding?: (boolean|null);
17266
18681
 
18682
+ /** ResponseMetaData samplingMetadatas. */
18683
+ public samplingMetadatas: google.analytics.data.v1beta.ISamplingMetadata[];
18684
+
17267
18685
  /** ResponseMetaData _schemaRestrictionResponse. */
17268
18686
  public _schemaRestrictionResponse?: "schemaRestrictionResponse";
17269
18687
 
@@ -17566,6 +18984,109 @@ export namespace google {
17566
18984
  }
17567
18985
  }
17568
18986
 
18987
+ /** Properties of a SamplingMetadata. */
18988
+ interface ISamplingMetadata {
18989
+
18990
+ /** SamplingMetadata samplesReadCount */
18991
+ samplesReadCount?: (number|Long|string|null);
18992
+
18993
+ /** SamplingMetadata samplingSpaceSize */
18994
+ samplingSpaceSize?: (number|Long|string|null);
18995
+ }
18996
+
18997
+ /** Represents a SamplingMetadata. */
18998
+ class SamplingMetadata implements ISamplingMetadata {
18999
+
19000
+ /**
19001
+ * Constructs a new SamplingMetadata.
19002
+ * @param [properties] Properties to set
19003
+ */
19004
+ constructor(properties?: google.analytics.data.v1beta.ISamplingMetadata);
19005
+
19006
+ /** SamplingMetadata samplesReadCount. */
19007
+ public samplesReadCount: (number|Long|string);
19008
+
19009
+ /** SamplingMetadata samplingSpaceSize. */
19010
+ public samplingSpaceSize: (number|Long|string);
19011
+
19012
+ /**
19013
+ * Creates a new SamplingMetadata instance using the specified properties.
19014
+ * @param [properties] Properties to set
19015
+ * @returns SamplingMetadata instance
19016
+ */
19017
+ public static create(properties?: google.analytics.data.v1beta.ISamplingMetadata): google.analytics.data.v1beta.SamplingMetadata;
19018
+
19019
+ /**
19020
+ * Encodes the specified SamplingMetadata message. Does not implicitly {@link google.analytics.data.v1beta.SamplingMetadata.verify|verify} messages.
19021
+ * @param message SamplingMetadata message or plain object to encode
19022
+ * @param [writer] Writer to encode to
19023
+ * @returns Writer
19024
+ */
19025
+ public static encode(message: google.analytics.data.v1beta.ISamplingMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
19026
+
19027
+ /**
19028
+ * Encodes the specified SamplingMetadata message, length delimited. Does not implicitly {@link google.analytics.data.v1beta.SamplingMetadata.verify|verify} messages.
19029
+ * @param message SamplingMetadata message or plain object to encode
19030
+ * @param [writer] Writer to encode to
19031
+ * @returns Writer
19032
+ */
19033
+ public static encodeDelimited(message: google.analytics.data.v1beta.ISamplingMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
19034
+
19035
+ /**
19036
+ * Decodes a SamplingMetadata message from the specified reader or buffer.
19037
+ * @param reader Reader or buffer to decode from
19038
+ * @param [length] Message length if known beforehand
19039
+ * @returns SamplingMetadata
19040
+ * @throws {Error} If the payload is not a reader or valid buffer
19041
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19042
+ */
19043
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1beta.SamplingMetadata;
19044
+
19045
+ /**
19046
+ * Decodes a SamplingMetadata message from the specified reader or buffer, length delimited.
19047
+ * @param reader Reader or buffer to decode from
19048
+ * @returns SamplingMetadata
19049
+ * @throws {Error} If the payload is not a reader or valid buffer
19050
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
19051
+ */
19052
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1beta.SamplingMetadata;
19053
+
19054
+ /**
19055
+ * Verifies a SamplingMetadata message.
19056
+ * @param message Plain object to verify
19057
+ * @returns `null` if valid, otherwise the reason why it is not
19058
+ */
19059
+ public static verify(message: { [k: string]: any }): (string|null);
19060
+
19061
+ /**
19062
+ * Creates a SamplingMetadata message from a plain object. Also converts values to their respective internal types.
19063
+ * @param object Plain object
19064
+ * @returns SamplingMetadata
19065
+ */
19066
+ public static fromObject(object: { [k: string]: any }): google.analytics.data.v1beta.SamplingMetadata;
19067
+
19068
+ /**
19069
+ * Creates a plain object from a SamplingMetadata message. Also converts values to other types if specified.
19070
+ * @param message SamplingMetadata
19071
+ * @param [options] Conversion options
19072
+ * @returns Plain object
19073
+ */
19074
+ public static toObject(message: google.analytics.data.v1beta.SamplingMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
19075
+
19076
+ /**
19077
+ * Converts this SamplingMetadata to JSON.
19078
+ * @returns JSON object
19079
+ */
19080
+ public toJSON(): { [k: string]: any };
19081
+
19082
+ /**
19083
+ * Gets the default type url for SamplingMetadata
19084
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
19085
+ * @returns The default type url
19086
+ */
19087
+ public static getTypeUrl(typeUrlPrefix?: string): string;
19088
+ }
19089
+
17569
19090
  /** Properties of a DimensionHeader. */
17570
19091
  interface IDimensionHeader {
17571
19092
 
@@ -18522,10 +20043,16 @@ export namespace google {
18522
20043
  constructor(properties?: google.analytics.data.v1beta.IQuotaStatus);
18523
20044
 
18524
20045
  /** QuotaStatus consumed. */
18525
- public consumed: number;
20046
+ public consumed?: (number|null);
18526
20047
 
18527
20048
  /** QuotaStatus remaining. */
18528
- public remaining: number;
20049
+ public remaining?: (number|null);
20050
+
20051
+ /** QuotaStatus _consumed. */
20052
+ public _consumed?: "consumed";
20053
+
20054
+ /** QuotaStatus _remaining. */
20055
+ public _remaining?: "remaining";
18529
20056
 
18530
20057
  /**
18531
20058
  * Creates a new QuotaStatus instance using the specified properties.