@google-analytics/data 4.5.0 → 4.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -0
- package/README.md +4 -0
- package/build/protos/google/analytics/data/v1alpha/analytics_data_api.proto +351 -1
- package/build/protos/google/analytics/data/v1alpha/data.proto +324 -1
- package/build/protos/google/analytics/data/v1beta/analytics_data_api.proto +1 -1
- package/build/protos/google/analytics/data/v1beta/data.proto +1 -1
- package/build/protos/protos.d.ts +3195 -692
- package/build/protos/protos.js +8162 -1768
- package/build/protos/protos.json +709 -0
- package/build/src/v1alpha/alpha_analytics_data_client.d.ts +230 -0
- package/build/src/v1alpha/alpha_analytics_data_client.js +224 -0
- package/build/src/v1alpha/alpha_analytics_data_client_config.json +20 -0
- package/package.json +1 -1
package/build/protos/protos.d.ts
CHANGED
|
@@ -4680,6 +4680,62 @@ export namespace google {
|
|
|
4680
4680
|
* @returns Promise
|
|
4681
4681
|
*/
|
|
4682
4682
|
public listRecurringAudienceLists(request: google.analytics.data.v1alpha.IListRecurringAudienceListsRequest): Promise<google.analytics.data.v1alpha.ListRecurringAudienceListsResponse>;
|
|
4683
|
+
|
|
4684
|
+
/**
|
|
4685
|
+
* Calls CreateReportTask.
|
|
4686
|
+
* @param request CreateReportTaskRequest message or plain object
|
|
4687
|
+
* @param callback Node-style callback called with the error, if any, and Operation
|
|
4688
|
+
*/
|
|
4689
|
+
public createReportTask(request: google.analytics.data.v1alpha.ICreateReportTaskRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.CreateReportTaskCallback): void;
|
|
4690
|
+
|
|
4691
|
+
/**
|
|
4692
|
+
* Calls CreateReportTask.
|
|
4693
|
+
* @param request CreateReportTaskRequest message or plain object
|
|
4694
|
+
* @returns Promise
|
|
4695
|
+
*/
|
|
4696
|
+
public createReportTask(request: google.analytics.data.v1alpha.ICreateReportTaskRequest): Promise<google.longrunning.Operation>;
|
|
4697
|
+
|
|
4698
|
+
/**
|
|
4699
|
+
* Calls QueryReportTask.
|
|
4700
|
+
* @param request QueryReportTaskRequest message or plain object
|
|
4701
|
+
* @param callback Node-style callback called with the error, if any, and QueryReportTaskResponse
|
|
4702
|
+
*/
|
|
4703
|
+
public queryReportTask(request: google.analytics.data.v1alpha.IQueryReportTaskRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.QueryReportTaskCallback): void;
|
|
4704
|
+
|
|
4705
|
+
/**
|
|
4706
|
+
* Calls QueryReportTask.
|
|
4707
|
+
* @param request QueryReportTaskRequest message or plain object
|
|
4708
|
+
* @returns Promise
|
|
4709
|
+
*/
|
|
4710
|
+
public queryReportTask(request: google.analytics.data.v1alpha.IQueryReportTaskRequest): Promise<google.analytics.data.v1alpha.QueryReportTaskResponse>;
|
|
4711
|
+
|
|
4712
|
+
/**
|
|
4713
|
+
* Calls GetReportTask.
|
|
4714
|
+
* @param request GetReportTaskRequest message or plain object
|
|
4715
|
+
* @param callback Node-style callback called with the error, if any, and ReportTask
|
|
4716
|
+
*/
|
|
4717
|
+
public getReportTask(request: google.analytics.data.v1alpha.IGetReportTaskRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.GetReportTaskCallback): void;
|
|
4718
|
+
|
|
4719
|
+
/**
|
|
4720
|
+
* Calls GetReportTask.
|
|
4721
|
+
* @param request GetReportTaskRequest message or plain object
|
|
4722
|
+
* @returns Promise
|
|
4723
|
+
*/
|
|
4724
|
+
public getReportTask(request: google.analytics.data.v1alpha.IGetReportTaskRequest): Promise<google.analytics.data.v1alpha.ReportTask>;
|
|
4725
|
+
|
|
4726
|
+
/**
|
|
4727
|
+
* Calls ListReportTasks.
|
|
4728
|
+
* @param request ListReportTasksRequest message or plain object
|
|
4729
|
+
* @param callback Node-style callback called with the error, if any, and ListReportTasksResponse
|
|
4730
|
+
*/
|
|
4731
|
+
public listReportTasks(request: google.analytics.data.v1alpha.IListReportTasksRequest, callback: google.analytics.data.v1alpha.AlphaAnalyticsData.ListReportTasksCallback): void;
|
|
4732
|
+
|
|
4733
|
+
/**
|
|
4734
|
+
* Calls ListReportTasks.
|
|
4735
|
+
* @param request ListReportTasksRequest message or plain object
|
|
4736
|
+
* @returns Promise
|
|
4737
|
+
*/
|
|
4738
|
+
public listReportTasks(request: google.analytics.data.v1alpha.IListReportTasksRequest): Promise<google.analytics.data.v1alpha.ListReportTasksResponse>;
|
|
4683
4739
|
}
|
|
4684
4740
|
|
|
4685
4741
|
namespace AlphaAnalyticsData {
|
|
@@ -4746,6 +4802,34 @@ export namespace google {
|
|
|
4746
4802
|
* @param [response] ListRecurringAudienceListsResponse
|
|
4747
4803
|
*/
|
|
4748
4804
|
type ListRecurringAudienceListsCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ListRecurringAudienceListsResponse) => void;
|
|
4805
|
+
|
|
4806
|
+
/**
|
|
4807
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|createReportTask}.
|
|
4808
|
+
* @param error Error, if any
|
|
4809
|
+
* @param [response] Operation
|
|
4810
|
+
*/
|
|
4811
|
+
type CreateReportTaskCallback = (error: (Error|null), response?: google.longrunning.Operation) => void;
|
|
4812
|
+
|
|
4813
|
+
/**
|
|
4814
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|queryReportTask}.
|
|
4815
|
+
* @param error Error, if any
|
|
4816
|
+
* @param [response] QueryReportTaskResponse
|
|
4817
|
+
*/
|
|
4818
|
+
type QueryReportTaskCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.QueryReportTaskResponse) => void;
|
|
4819
|
+
|
|
4820
|
+
/**
|
|
4821
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|getReportTask}.
|
|
4822
|
+
* @param error Error, if any
|
|
4823
|
+
* @param [response] ReportTask
|
|
4824
|
+
*/
|
|
4825
|
+
type GetReportTaskCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ReportTask) => void;
|
|
4826
|
+
|
|
4827
|
+
/**
|
|
4828
|
+
* Callback as used by {@link google.analytics.data.v1alpha.AlphaAnalyticsData|listReportTasks}.
|
|
4829
|
+
* @param error Error, if any
|
|
4830
|
+
* @param [response] ListReportTasksResponse
|
|
4831
|
+
*/
|
|
4832
|
+
type ListReportTasksCallback = (error: (Error|null), response?: google.analytics.data.v1alpha.ListReportTasksResponse) => void;
|
|
4749
4833
|
}
|
|
4750
4834
|
|
|
4751
4835
|
/** Properties of a CreateRecurringAudienceListRequest. */
|
|
@@ -7142,1423 +7226,3826 @@ export namespace google {
|
|
|
7142
7226
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7143
7227
|
}
|
|
7144
7228
|
|
|
7145
|
-
/** Properties of a
|
|
7146
|
-
interface
|
|
7229
|
+
/** Properties of a ReportTask. */
|
|
7230
|
+
interface IReportTask {
|
|
7147
7231
|
|
|
7148
|
-
/**
|
|
7149
|
-
|
|
7232
|
+
/** ReportTask name */
|
|
7233
|
+
name?: (string|null);
|
|
7150
7234
|
|
|
7151
|
-
/**
|
|
7152
|
-
|
|
7235
|
+
/** ReportTask reportDefinition */
|
|
7236
|
+
reportDefinition?: (google.analytics.data.v1alpha.ReportTask.IReportDefinition|null);
|
|
7153
7237
|
|
|
7154
|
-
/**
|
|
7155
|
-
|
|
7238
|
+
/** ReportTask reportMetadata */
|
|
7239
|
+
reportMetadata?: (google.analytics.data.v1alpha.ReportTask.IReportMetadata|null);
|
|
7156
7240
|
}
|
|
7157
7241
|
|
|
7158
|
-
/** Represents a
|
|
7159
|
-
class
|
|
7242
|
+
/** Represents a ReportTask. */
|
|
7243
|
+
class ReportTask implements IReportTask {
|
|
7160
7244
|
|
|
7161
7245
|
/**
|
|
7162
|
-
* Constructs a new
|
|
7246
|
+
* Constructs a new ReportTask.
|
|
7163
7247
|
* @param [properties] Properties to set
|
|
7164
7248
|
*/
|
|
7165
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7249
|
+
constructor(properties?: google.analytics.data.v1alpha.IReportTask);
|
|
7166
7250
|
|
|
7167
|
-
/**
|
|
7168
|
-
public
|
|
7251
|
+
/** ReportTask name. */
|
|
7252
|
+
public name: string;
|
|
7169
7253
|
|
|
7170
|
-
/**
|
|
7171
|
-
public
|
|
7254
|
+
/** ReportTask reportDefinition. */
|
|
7255
|
+
public reportDefinition?: (google.analytics.data.v1alpha.ReportTask.IReportDefinition|null);
|
|
7172
7256
|
|
|
7173
|
-
/**
|
|
7174
|
-
public
|
|
7257
|
+
/** ReportTask reportMetadata. */
|
|
7258
|
+
public reportMetadata?: (google.analytics.data.v1alpha.ReportTask.IReportMetadata|null);
|
|
7175
7259
|
|
|
7176
7260
|
/**
|
|
7177
|
-
* Creates a new
|
|
7261
|
+
* Creates a new ReportTask instance using the specified properties.
|
|
7178
7262
|
* @param [properties] Properties to set
|
|
7179
|
-
* @returns
|
|
7263
|
+
* @returns ReportTask instance
|
|
7180
7264
|
*/
|
|
7181
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
7265
|
+
public static create(properties?: google.analytics.data.v1alpha.IReportTask): google.analytics.data.v1alpha.ReportTask;
|
|
7182
7266
|
|
|
7183
7267
|
/**
|
|
7184
|
-
* Encodes the specified
|
|
7185
|
-
* @param message
|
|
7268
|
+
* Encodes the specified ReportTask message. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.verify|verify} messages.
|
|
7269
|
+
* @param message ReportTask message or plain object to encode
|
|
7186
7270
|
* @param [writer] Writer to encode to
|
|
7187
7271
|
* @returns Writer
|
|
7188
7272
|
*/
|
|
7189
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
7273
|
+
public static encode(message: google.analytics.data.v1alpha.IReportTask, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7190
7274
|
|
|
7191
7275
|
/**
|
|
7192
|
-
* Encodes the specified
|
|
7193
|
-
* @param message
|
|
7276
|
+
* Encodes the specified ReportTask message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.verify|verify} messages.
|
|
7277
|
+
* @param message ReportTask message or plain object to encode
|
|
7194
7278
|
* @param [writer] Writer to encode to
|
|
7195
7279
|
* @returns Writer
|
|
7196
7280
|
*/
|
|
7197
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
7281
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IReportTask, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7198
7282
|
|
|
7199
7283
|
/**
|
|
7200
|
-
* Decodes a
|
|
7284
|
+
* Decodes a ReportTask message from the specified reader or buffer.
|
|
7201
7285
|
* @param reader Reader or buffer to decode from
|
|
7202
7286
|
* @param [length] Message length if known beforehand
|
|
7203
|
-
* @returns
|
|
7287
|
+
* @returns ReportTask
|
|
7204
7288
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7205
7289
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7206
7290
|
*/
|
|
7207
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7291
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ReportTask;
|
|
7208
7292
|
|
|
7209
7293
|
/**
|
|
7210
|
-
* Decodes a
|
|
7294
|
+
* Decodes a ReportTask message from the specified reader or buffer, length delimited.
|
|
7211
7295
|
* @param reader Reader or buffer to decode from
|
|
7212
|
-
* @returns
|
|
7296
|
+
* @returns ReportTask
|
|
7213
7297
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7214
7298
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7215
7299
|
*/
|
|
7216
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7300
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ReportTask;
|
|
7217
7301
|
|
|
7218
7302
|
/**
|
|
7219
|
-
* Verifies a
|
|
7303
|
+
* Verifies a ReportTask message.
|
|
7220
7304
|
* @param message Plain object to verify
|
|
7221
7305
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7222
7306
|
*/
|
|
7223
7307
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7224
7308
|
|
|
7225
7309
|
/**
|
|
7226
|
-
* Creates a
|
|
7310
|
+
* Creates a ReportTask message from a plain object. Also converts values to their respective internal types.
|
|
7227
7311
|
* @param object Plain object
|
|
7228
|
-
* @returns
|
|
7312
|
+
* @returns ReportTask
|
|
7229
7313
|
*/
|
|
7230
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7314
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ReportTask;
|
|
7231
7315
|
|
|
7232
7316
|
/**
|
|
7233
|
-
* Creates a plain object from a
|
|
7234
|
-
* @param message
|
|
7317
|
+
* Creates a plain object from a ReportTask message. Also converts values to other types if specified.
|
|
7318
|
+
* @param message ReportTask
|
|
7235
7319
|
* @param [options] Conversion options
|
|
7236
7320
|
* @returns Plain object
|
|
7237
7321
|
*/
|
|
7238
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7322
|
+
public static toObject(message: google.analytics.data.v1alpha.ReportTask, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7239
7323
|
|
|
7240
7324
|
/**
|
|
7241
|
-
* Converts this
|
|
7325
|
+
* Converts this ReportTask to JSON.
|
|
7242
7326
|
* @returns JSON object
|
|
7243
7327
|
*/
|
|
7244
7328
|
public toJSON(): { [k: string]: any };
|
|
7245
7329
|
|
|
7246
7330
|
/**
|
|
7247
|
-
* Gets the default type url for
|
|
7331
|
+
* Gets the default type url for ReportTask
|
|
7248
7332
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7249
7333
|
* @returns The default type url
|
|
7250
7334
|
*/
|
|
7251
7335
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7252
7336
|
}
|
|
7253
7337
|
|
|
7254
|
-
|
|
7255
|
-
interface IDimension {
|
|
7256
|
-
|
|
7257
|
-
/** Dimension name */
|
|
7258
|
-
name?: (string|null);
|
|
7338
|
+
namespace ReportTask {
|
|
7259
7339
|
|
|
7260
|
-
/**
|
|
7261
|
-
|
|
7262
|
-
}
|
|
7340
|
+
/** Properties of a ReportDefinition. */
|
|
7341
|
+
interface IReportDefinition {
|
|
7263
7342
|
|
|
7264
|
-
|
|
7265
|
-
|
|
7343
|
+
/** ReportDefinition dimensions */
|
|
7344
|
+
dimensions?: (google.analytics.data.v1alpha.IDimension[]|null);
|
|
7266
7345
|
|
|
7267
|
-
|
|
7268
|
-
|
|
7269
|
-
* @param [properties] Properties to set
|
|
7270
|
-
*/
|
|
7271
|
-
constructor(properties?: google.analytics.data.v1alpha.IDimension);
|
|
7346
|
+
/** ReportDefinition metrics */
|
|
7347
|
+
metrics?: (google.analytics.data.v1alpha.IMetric[]|null);
|
|
7272
7348
|
|
|
7273
|
-
|
|
7274
|
-
|
|
7349
|
+
/** ReportDefinition dateRanges */
|
|
7350
|
+
dateRanges?: (google.analytics.data.v1alpha.IDateRange[]|null);
|
|
7275
7351
|
|
|
7276
|
-
|
|
7277
|
-
|
|
7352
|
+
/** ReportDefinition dimensionFilter */
|
|
7353
|
+
dimensionFilter?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
7278
7354
|
|
|
7279
|
-
|
|
7280
|
-
|
|
7281
|
-
* @param [properties] Properties to set
|
|
7282
|
-
* @returns Dimension instance
|
|
7283
|
-
*/
|
|
7284
|
-
public static create(properties?: google.analytics.data.v1alpha.IDimension): google.analytics.data.v1alpha.Dimension;
|
|
7355
|
+
/** ReportDefinition metricFilter */
|
|
7356
|
+
metricFilter?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
7285
7357
|
|
|
7286
|
-
|
|
7287
|
-
|
|
7288
|
-
* @param message Dimension message or plain object to encode
|
|
7289
|
-
* @param [writer] Writer to encode to
|
|
7290
|
-
* @returns Writer
|
|
7291
|
-
*/
|
|
7292
|
-
public static encode(message: google.analytics.data.v1alpha.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7358
|
+
/** ReportDefinition offset */
|
|
7359
|
+
offset?: (number|Long|string|null);
|
|
7293
7360
|
|
|
7294
|
-
|
|
7295
|
-
|
|
7296
|
-
* @param message Dimension message or plain object to encode
|
|
7297
|
-
* @param [writer] Writer to encode to
|
|
7298
|
-
* @returns Writer
|
|
7299
|
-
*/
|
|
7300
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7361
|
+
/** ReportDefinition limit */
|
|
7362
|
+
limit?: (number|Long|string|null);
|
|
7301
7363
|
|
|
7302
|
-
|
|
7303
|
-
|
|
7304
|
-
* @param reader Reader or buffer to decode from
|
|
7305
|
-
* @param [length] Message length if known beforehand
|
|
7306
|
-
* @returns Dimension
|
|
7307
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7308
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7309
|
-
*/
|
|
7310
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.Dimension;
|
|
7364
|
+
/** ReportDefinition metricAggregations */
|
|
7365
|
+
metricAggregations?: (google.analytics.data.v1alpha.MetricAggregation[]|null);
|
|
7311
7366
|
|
|
7312
|
-
|
|
7313
|
-
|
|
7314
|
-
* @param reader Reader or buffer to decode from
|
|
7315
|
-
* @returns Dimension
|
|
7316
|
-
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7317
|
-
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7318
|
-
*/
|
|
7319
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.Dimension;
|
|
7367
|
+
/** ReportDefinition orderBys */
|
|
7368
|
+
orderBys?: (google.analytics.data.v1alpha.IOrderBy[]|null);
|
|
7320
7369
|
|
|
7321
|
-
|
|
7322
|
-
|
|
7323
|
-
* @param message Plain object to verify
|
|
7324
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
7325
|
-
*/
|
|
7326
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
7370
|
+
/** ReportDefinition currencyCode */
|
|
7371
|
+
currencyCode?: (string|null);
|
|
7327
7372
|
|
|
7328
|
-
|
|
7329
|
-
|
|
7330
|
-
* @param object Plain object
|
|
7331
|
-
* @returns Dimension
|
|
7332
|
-
*/
|
|
7333
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.Dimension;
|
|
7373
|
+
/** ReportDefinition cohortSpec */
|
|
7374
|
+
cohortSpec?: (google.analytics.data.v1alpha.ICohortSpec|null);
|
|
7334
7375
|
|
|
7335
|
-
|
|
7336
|
-
|
|
7337
|
-
|
|
7338
|
-
* @param [options] Conversion options
|
|
7339
|
-
* @returns Plain object
|
|
7340
|
-
*/
|
|
7341
|
-
public static toObject(message: google.analytics.data.v1alpha.Dimension, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7376
|
+
/** ReportDefinition keepEmptyRows */
|
|
7377
|
+
keepEmptyRows?: (boolean|null);
|
|
7378
|
+
}
|
|
7342
7379
|
|
|
7343
|
-
/**
|
|
7344
|
-
|
|
7345
|
-
* @returns JSON object
|
|
7346
|
-
*/
|
|
7347
|
-
public toJSON(): { [k: string]: any };
|
|
7380
|
+
/** Represents a ReportDefinition. */
|
|
7381
|
+
class ReportDefinition implements IReportDefinition {
|
|
7348
7382
|
|
|
7349
|
-
|
|
7350
|
-
|
|
7351
|
-
|
|
7352
|
-
|
|
7353
|
-
|
|
7354
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7355
|
-
}
|
|
7383
|
+
/**
|
|
7384
|
+
* Constructs a new ReportDefinition.
|
|
7385
|
+
* @param [properties] Properties to set
|
|
7386
|
+
*/
|
|
7387
|
+
constructor(properties?: google.analytics.data.v1alpha.ReportTask.IReportDefinition);
|
|
7356
7388
|
|
|
7357
|
-
|
|
7358
|
-
|
|
7389
|
+
/** ReportDefinition dimensions. */
|
|
7390
|
+
public dimensions: google.analytics.data.v1alpha.IDimension[];
|
|
7359
7391
|
|
|
7360
|
-
|
|
7361
|
-
|
|
7392
|
+
/** ReportDefinition metrics. */
|
|
7393
|
+
public metrics: google.analytics.data.v1alpha.IMetric[];
|
|
7362
7394
|
|
|
7363
|
-
|
|
7364
|
-
|
|
7395
|
+
/** ReportDefinition dateRanges. */
|
|
7396
|
+
public dateRanges: google.analytics.data.v1alpha.IDateRange[];
|
|
7365
7397
|
|
|
7366
|
-
|
|
7367
|
-
|
|
7368
|
-
}
|
|
7398
|
+
/** ReportDefinition dimensionFilter. */
|
|
7399
|
+
public dimensionFilter?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
7369
7400
|
|
|
7370
|
-
|
|
7371
|
-
|
|
7401
|
+
/** ReportDefinition metricFilter. */
|
|
7402
|
+
public metricFilter?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
7372
7403
|
|
|
7373
|
-
|
|
7374
|
-
|
|
7375
|
-
* @param [properties] Properties to set
|
|
7376
|
-
*/
|
|
7377
|
-
constructor(properties?: google.analytics.data.v1alpha.IDimensionExpression);
|
|
7404
|
+
/** ReportDefinition offset. */
|
|
7405
|
+
public offset: (number|Long|string);
|
|
7378
7406
|
|
|
7379
|
-
|
|
7380
|
-
|
|
7407
|
+
/** ReportDefinition limit. */
|
|
7408
|
+
public limit: (number|Long|string);
|
|
7381
7409
|
|
|
7382
|
-
|
|
7383
|
-
|
|
7410
|
+
/** ReportDefinition metricAggregations. */
|
|
7411
|
+
public metricAggregations: google.analytics.data.v1alpha.MetricAggregation[];
|
|
7384
7412
|
|
|
7385
|
-
|
|
7386
|
-
|
|
7413
|
+
/** ReportDefinition orderBys. */
|
|
7414
|
+
public orderBys: google.analytics.data.v1alpha.IOrderBy[];
|
|
7387
7415
|
|
|
7388
|
-
|
|
7389
|
-
|
|
7416
|
+
/** ReportDefinition currencyCode. */
|
|
7417
|
+
public currencyCode: string;
|
|
7390
7418
|
|
|
7391
|
-
|
|
7392
|
-
|
|
7393
|
-
* @param [properties] Properties to set
|
|
7394
|
-
* @returns DimensionExpression instance
|
|
7395
|
-
*/
|
|
7396
|
-
public static create(properties?: google.analytics.data.v1alpha.IDimensionExpression): google.analytics.data.v1alpha.DimensionExpression;
|
|
7419
|
+
/** ReportDefinition cohortSpec. */
|
|
7420
|
+
public cohortSpec?: (google.analytics.data.v1alpha.ICohortSpec|null);
|
|
7397
7421
|
|
|
7398
|
-
|
|
7399
|
-
|
|
7400
|
-
* @param message DimensionExpression message or plain object to encode
|
|
7401
|
-
* @param [writer] Writer to encode to
|
|
7402
|
-
* @returns Writer
|
|
7403
|
-
*/
|
|
7404
|
-
public static encode(message: google.analytics.data.v1alpha.IDimensionExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7422
|
+
/** ReportDefinition keepEmptyRows. */
|
|
7423
|
+
public keepEmptyRows: boolean;
|
|
7405
7424
|
|
|
7406
|
-
|
|
7407
|
-
|
|
7408
|
-
|
|
7409
|
-
|
|
7410
|
-
|
|
7411
|
-
|
|
7412
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.IDimensionExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7425
|
+
/**
|
|
7426
|
+
* Creates a new ReportDefinition instance using the specified properties.
|
|
7427
|
+
* @param [properties] Properties to set
|
|
7428
|
+
* @returns ReportDefinition instance
|
|
7429
|
+
*/
|
|
7430
|
+
public static create(properties?: google.analytics.data.v1alpha.ReportTask.IReportDefinition): google.analytics.data.v1alpha.ReportTask.ReportDefinition;
|
|
7413
7431
|
|
|
7414
|
-
|
|
7415
|
-
|
|
7416
|
-
|
|
7417
|
-
|
|
7418
|
-
|
|
7419
|
-
|
|
7420
|
-
|
|
7421
|
-
*/
|
|
7422
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.DimensionExpression;
|
|
7432
|
+
/**
|
|
7433
|
+
* Encodes the specified ReportDefinition message. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.ReportDefinition.verify|verify} messages.
|
|
7434
|
+
* @param message ReportDefinition message or plain object to encode
|
|
7435
|
+
* @param [writer] Writer to encode to
|
|
7436
|
+
* @returns Writer
|
|
7437
|
+
*/
|
|
7438
|
+
public static encode(message: google.analytics.data.v1alpha.ReportTask.IReportDefinition, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7423
7439
|
|
|
7424
|
-
|
|
7425
|
-
|
|
7426
|
-
|
|
7427
|
-
|
|
7428
|
-
|
|
7429
|
-
|
|
7430
|
-
|
|
7431
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.DimensionExpression;
|
|
7432
|
-
|
|
7433
|
-
/**
|
|
7434
|
-
* Verifies a DimensionExpression message.
|
|
7435
|
-
* @param message Plain object to verify
|
|
7436
|
-
* @returns `null` if valid, otherwise the reason why it is not
|
|
7437
|
-
*/
|
|
7438
|
-
public static verify(message: { [k: string]: any }): (string|null);
|
|
7439
|
-
|
|
7440
|
-
/**
|
|
7441
|
-
* Creates a DimensionExpression message from a plain object. Also converts values to their respective internal types.
|
|
7442
|
-
* @param object Plain object
|
|
7443
|
-
* @returns DimensionExpression
|
|
7444
|
-
*/
|
|
7445
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.DimensionExpression;
|
|
7446
|
-
|
|
7447
|
-
/**
|
|
7448
|
-
* Creates a plain object from a DimensionExpression message. Also converts values to other types if specified.
|
|
7449
|
-
* @param message DimensionExpression
|
|
7450
|
-
* @param [options] Conversion options
|
|
7451
|
-
* @returns Plain object
|
|
7452
|
-
*/
|
|
7453
|
-
public static toObject(message: google.analytics.data.v1alpha.DimensionExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7454
|
-
|
|
7455
|
-
/**
|
|
7456
|
-
* Converts this DimensionExpression to JSON.
|
|
7457
|
-
* @returns JSON object
|
|
7458
|
-
*/
|
|
7459
|
-
public toJSON(): { [k: string]: any };
|
|
7460
|
-
|
|
7461
|
-
/**
|
|
7462
|
-
* Gets the default type url for DimensionExpression
|
|
7463
|
-
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7464
|
-
* @returns The default type url
|
|
7465
|
-
*/
|
|
7466
|
-
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7467
|
-
}
|
|
7468
|
-
|
|
7469
|
-
namespace DimensionExpression {
|
|
7470
|
-
|
|
7471
|
-
/** Properties of a CaseExpression. */
|
|
7472
|
-
interface ICaseExpression {
|
|
7473
|
-
|
|
7474
|
-
/** CaseExpression dimensionName */
|
|
7475
|
-
dimensionName?: (string|null);
|
|
7476
|
-
}
|
|
7477
|
-
|
|
7478
|
-
/** Represents a CaseExpression. */
|
|
7479
|
-
class CaseExpression implements ICaseExpression {
|
|
7480
|
-
|
|
7481
|
-
/**
|
|
7482
|
-
* Constructs a new CaseExpression.
|
|
7483
|
-
* @param [properties] Properties to set
|
|
7484
|
-
*/
|
|
7485
|
-
constructor(properties?: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression);
|
|
7486
|
-
|
|
7487
|
-
/** CaseExpression dimensionName. */
|
|
7488
|
-
public dimensionName: string;
|
|
7489
|
-
|
|
7490
|
-
/**
|
|
7491
|
-
* Creates a new CaseExpression instance using the specified properties.
|
|
7492
|
-
* @param [properties] Properties to set
|
|
7493
|
-
* @returns CaseExpression instance
|
|
7494
|
-
*/
|
|
7495
|
-
public static create(properties?: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression): google.analytics.data.v1alpha.DimensionExpression.CaseExpression;
|
|
7496
|
-
|
|
7497
|
-
/**
|
|
7498
|
-
* Encodes the specified CaseExpression message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.CaseExpression.verify|verify} messages.
|
|
7499
|
-
* @param message CaseExpression message or plain object to encode
|
|
7500
|
-
* @param [writer] Writer to encode to
|
|
7501
|
-
* @returns Writer
|
|
7502
|
-
*/
|
|
7503
|
-
public static encode(message: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7504
|
-
|
|
7505
|
-
/**
|
|
7506
|
-
* Encodes the specified CaseExpression message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.CaseExpression.verify|verify} messages.
|
|
7507
|
-
* @param message CaseExpression message or plain object to encode
|
|
7508
|
-
* @param [writer] Writer to encode to
|
|
7509
|
-
* @returns Writer
|
|
7510
|
-
*/
|
|
7511
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7440
|
+
/**
|
|
7441
|
+
* Encodes the specified ReportDefinition message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.ReportDefinition.verify|verify} messages.
|
|
7442
|
+
* @param message ReportDefinition message or plain object to encode
|
|
7443
|
+
* @param [writer] Writer to encode to
|
|
7444
|
+
* @returns Writer
|
|
7445
|
+
*/
|
|
7446
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ReportTask.IReportDefinition, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7512
7447
|
|
|
7513
7448
|
/**
|
|
7514
|
-
* Decodes a
|
|
7449
|
+
* Decodes a ReportDefinition message from the specified reader or buffer.
|
|
7515
7450
|
* @param reader Reader or buffer to decode from
|
|
7516
7451
|
* @param [length] Message length if known beforehand
|
|
7517
|
-
* @returns
|
|
7452
|
+
* @returns ReportDefinition
|
|
7518
7453
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7519
7454
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7520
7455
|
*/
|
|
7521
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7456
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ReportTask.ReportDefinition;
|
|
7522
7457
|
|
|
7523
7458
|
/**
|
|
7524
|
-
* Decodes a
|
|
7459
|
+
* Decodes a ReportDefinition message from the specified reader or buffer, length delimited.
|
|
7525
7460
|
* @param reader Reader or buffer to decode from
|
|
7526
|
-
* @returns
|
|
7461
|
+
* @returns ReportDefinition
|
|
7527
7462
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7528
7463
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7529
7464
|
*/
|
|
7530
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7465
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ReportTask.ReportDefinition;
|
|
7531
7466
|
|
|
7532
7467
|
/**
|
|
7533
|
-
* Verifies a
|
|
7468
|
+
* Verifies a ReportDefinition message.
|
|
7534
7469
|
* @param message Plain object to verify
|
|
7535
7470
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7536
7471
|
*/
|
|
7537
7472
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7538
7473
|
|
|
7539
7474
|
/**
|
|
7540
|
-
* Creates a
|
|
7475
|
+
* Creates a ReportDefinition message from a plain object. Also converts values to their respective internal types.
|
|
7541
7476
|
* @param object Plain object
|
|
7542
|
-
* @returns
|
|
7477
|
+
* @returns ReportDefinition
|
|
7543
7478
|
*/
|
|
7544
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7479
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ReportTask.ReportDefinition;
|
|
7545
7480
|
|
|
7546
7481
|
/**
|
|
7547
|
-
* Creates a plain object from a
|
|
7548
|
-
* @param message
|
|
7482
|
+
* Creates a plain object from a ReportDefinition message. Also converts values to other types if specified.
|
|
7483
|
+
* @param message ReportDefinition
|
|
7549
7484
|
* @param [options] Conversion options
|
|
7550
7485
|
* @returns Plain object
|
|
7551
7486
|
*/
|
|
7552
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7487
|
+
public static toObject(message: google.analytics.data.v1alpha.ReportTask.ReportDefinition, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7553
7488
|
|
|
7554
7489
|
/**
|
|
7555
|
-
* Converts this
|
|
7490
|
+
* Converts this ReportDefinition to JSON.
|
|
7556
7491
|
* @returns JSON object
|
|
7557
7492
|
*/
|
|
7558
7493
|
public toJSON(): { [k: string]: any };
|
|
7559
7494
|
|
|
7560
7495
|
/**
|
|
7561
|
-
* Gets the default type url for
|
|
7496
|
+
* Gets the default type url for ReportDefinition
|
|
7562
7497
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7563
7498
|
* @returns The default type url
|
|
7564
7499
|
*/
|
|
7565
7500
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7566
7501
|
}
|
|
7567
7502
|
|
|
7568
|
-
/** Properties of a
|
|
7569
|
-
interface
|
|
7503
|
+
/** Properties of a ReportMetadata. */
|
|
7504
|
+
interface IReportMetadata {
|
|
7570
7505
|
|
|
7571
|
-
/**
|
|
7572
|
-
|
|
7506
|
+
/** ReportMetadata state */
|
|
7507
|
+
state?: (google.analytics.data.v1alpha.ReportTask.ReportMetadata.State|keyof typeof google.analytics.data.v1alpha.ReportTask.ReportMetadata.State|null);
|
|
7573
7508
|
|
|
7574
|
-
/**
|
|
7575
|
-
|
|
7509
|
+
/** ReportMetadata beginCreatingTime */
|
|
7510
|
+
beginCreatingTime?: (google.protobuf.ITimestamp|null);
|
|
7511
|
+
|
|
7512
|
+
/** ReportMetadata creationQuotaTokensCharged */
|
|
7513
|
+
creationQuotaTokensCharged?: (number|null);
|
|
7514
|
+
|
|
7515
|
+
/** ReportMetadata taskRowCount */
|
|
7516
|
+
taskRowCount?: (number|null);
|
|
7517
|
+
|
|
7518
|
+
/** ReportMetadata errorMessage */
|
|
7519
|
+
errorMessage?: (string|null);
|
|
7520
|
+
|
|
7521
|
+
/** ReportMetadata totalRowCount */
|
|
7522
|
+
totalRowCount?: (number|null);
|
|
7576
7523
|
}
|
|
7577
7524
|
|
|
7578
|
-
/** Represents a
|
|
7579
|
-
class
|
|
7525
|
+
/** Represents a ReportMetadata. */
|
|
7526
|
+
class ReportMetadata implements IReportMetadata {
|
|
7580
7527
|
|
|
7581
7528
|
/**
|
|
7582
|
-
* Constructs a new
|
|
7529
|
+
* Constructs a new ReportMetadata.
|
|
7583
7530
|
* @param [properties] Properties to set
|
|
7584
7531
|
*/
|
|
7585
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7532
|
+
constructor(properties?: google.analytics.data.v1alpha.ReportTask.IReportMetadata);
|
|
7586
7533
|
|
|
7587
|
-
/**
|
|
7588
|
-
public
|
|
7534
|
+
/** ReportMetadata state. */
|
|
7535
|
+
public state?: (google.analytics.data.v1alpha.ReportTask.ReportMetadata.State|keyof typeof google.analytics.data.v1alpha.ReportTask.ReportMetadata.State|null);
|
|
7589
7536
|
|
|
7590
|
-
/**
|
|
7591
|
-
public
|
|
7537
|
+
/** ReportMetadata beginCreatingTime. */
|
|
7538
|
+
public beginCreatingTime?: (google.protobuf.ITimestamp|null);
|
|
7539
|
+
|
|
7540
|
+
/** ReportMetadata creationQuotaTokensCharged. */
|
|
7541
|
+
public creationQuotaTokensCharged: number;
|
|
7542
|
+
|
|
7543
|
+
/** ReportMetadata taskRowCount. */
|
|
7544
|
+
public taskRowCount?: (number|null);
|
|
7545
|
+
|
|
7546
|
+
/** ReportMetadata errorMessage. */
|
|
7547
|
+
public errorMessage?: (string|null);
|
|
7548
|
+
|
|
7549
|
+
/** ReportMetadata totalRowCount. */
|
|
7550
|
+
public totalRowCount?: (number|null);
|
|
7551
|
+
|
|
7552
|
+
/** ReportMetadata _state. */
|
|
7553
|
+
public _state?: "state";
|
|
7554
|
+
|
|
7555
|
+
/** ReportMetadata _beginCreatingTime. */
|
|
7556
|
+
public _beginCreatingTime?: "beginCreatingTime";
|
|
7557
|
+
|
|
7558
|
+
/** ReportMetadata _taskRowCount. */
|
|
7559
|
+
public _taskRowCount?: "taskRowCount";
|
|
7560
|
+
|
|
7561
|
+
/** ReportMetadata _errorMessage. */
|
|
7562
|
+
public _errorMessage?: "errorMessage";
|
|
7563
|
+
|
|
7564
|
+
/** ReportMetadata _totalRowCount. */
|
|
7565
|
+
public _totalRowCount?: "totalRowCount";
|
|
7592
7566
|
|
|
7593
7567
|
/**
|
|
7594
|
-
* Creates a new
|
|
7568
|
+
* Creates a new ReportMetadata instance using the specified properties.
|
|
7595
7569
|
* @param [properties] Properties to set
|
|
7596
|
-
* @returns
|
|
7570
|
+
* @returns ReportMetadata instance
|
|
7597
7571
|
*/
|
|
7598
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
7572
|
+
public static create(properties?: google.analytics.data.v1alpha.ReportTask.IReportMetadata): google.analytics.data.v1alpha.ReportTask.ReportMetadata;
|
|
7599
7573
|
|
|
7600
7574
|
/**
|
|
7601
|
-
* Encodes the specified
|
|
7602
|
-
* @param message
|
|
7575
|
+
* Encodes the specified ReportMetadata message. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.ReportMetadata.verify|verify} messages.
|
|
7576
|
+
* @param message ReportMetadata message or plain object to encode
|
|
7603
7577
|
* @param [writer] Writer to encode to
|
|
7604
7578
|
* @returns Writer
|
|
7605
7579
|
*/
|
|
7606
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
7580
|
+
public static encode(message: google.analytics.data.v1alpha.ReportTask.IReportMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7607
7581
|
|
|
7608
7582
|
/**
|
|
7609
|
-
* Encodes the specified
|
|
7610
|
-
* @param message
|
|
7583
|
+
* Encodes the specified ReportMetadata message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ReportTask.ReportMetadata.verify|verify} messages.
|
|
7584
|
+
* @param message ReportMetadata message or plain object to encode
|
|
7611
7585
|
* @param [writer] Writer to encode to
|
|
7612
7586
|
* @returns Writer
|
|
7613
7587
|
*/
|
|
7614
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
7588
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ReportTask.IReportMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7615
7589
|
|
|
7616
7590
|
/**
|
|
7617
|
-
* Decodes a
|
|
7591
|
+
* Decodes a ReportMetadata message from the specified reader or buffer.
|
|
7618
7592
|
* @param reader Reader or buffer to decode from
|
|
7619
7593
|
* @param [length] Message length if known beforehand
|
|
7620
|
-
* @returns
|
|
7594
|
+
* @returns ReportMetadata
|
|
7621
7595
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7622
7596
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7623
7597
|
*/
|
|
7624
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7598
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ReportTask.ReportMetadata;
|
|
7625
7599
|
|
|
7626
7600
|
/**
|
|
7627
|
-
* Decodes a
|
|
7601
|
+
* Decodes a ReportMetadata message from the specified reader or buffer, length delimited.
|
|
7628
7602
|
* @param reader Reader or buffer to decode from
|
|
7629
|
-
* @returns
|
|
7603
|
+
* @returns ReportMetadata
|
|
7630
7604
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7631
7605
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7632
7606
|
*/
|
|
7633
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7607
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ReportTask.ReportMetadata;
|
|
7634
7608
|
|
|
7635
7609
|
/**
|
|
7636
|
-
* Verifies a
|
|
7610
|
+
* Verifies a ReportMetadata message.
|
|
7637
7611
|
* @param message Plain object to verify
|
|
7638
7612
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7639
7613
|
*/
|
|
7640
7614
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7641
7615
|
|
|
7642
7616
|
/**
|
|
7643
|
-
* Creates a
|
|
7617
|
+
* Creates a ReportMetadata message from a plain object. Also converts values to their respective internal types.
|
|
7644
7618
|
* @param object Plain object
|
|
7645
|
-
* @returns
|
|
7619
|
+
* @returns ReportMetadata
|
|
7646
7620
|
*/
|
|
7647
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7621
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ReportTask.ReportMetadata;
|
|
7648
7622
|
|
|
7649
7623
|
/**
|
|
7650
|
-
* Creates a plain object from a
|
|
7651
|
-
* @param message
|
|
7624
|
+
* Creates a plain object from a ReportMetadata message. Also converts values to other types if specified.
|
|
7625
|
+
* @param message ReportMetadata
|
|
7652
7626
|
* @param [options] Conversion options
|
|
7653
7627
|
* @returns Plain object
|
|
7654
7628
|
*/
|
|
7655
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7629
|
+
public static toObject(message: google.analytics.data.v1alpha.ReportTask.ReportMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7656
7630
|
|
|
7657
7631
|
/**
|
|
7658
|
-
* Converts this
|
|
7632
|
+
* Converts this ReportMetadata to JSON.
|
|
7659
7633
|
* @returns JSON object
|
|
7660
7634
|
*/
|
|
7661
7635
|
public toJSON(): { [k: string]: any };
|
|
7662
7636
|
|
|
7663
7637
|
/**
|
|
7664
|
-
* Gets the default type url for
|
|
7638
|
+
* Gets the default type url for ReportMetadata
|
|
7665
7639
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7666
7640
|
* @returns The default type url
|
|
7667
7641
|
*/
|
|
7668
7642
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7669
7643
|
}
|
|
7670
|
-
}
|
|
7671
7644
|
|
|
7672
|
-
|
|
7673
|
-
interface IFilterExpression {
|
|
7645
|
+
namespace ReportMetadata {
|
|
7674
7646
|
|
|
7675
|
-
|
|
7676
|
-
|
|
7647
|
+
/** State enum. */
|
|
7648
|
+
enum State {
|
|
7649
|
+
STATE_UNSPECIFIED = 0,
|
|
7650
|
+
CREATING = 1,
|
|
7651
|
+
ACTIVE = 2,
|
|
7652
|
+
FAILED = 3
|
|
7653
|
+
}
|
|
7654
|
+
}
|
|
7655
|
+
}
|
|
7677
7656
|
|
|
7678
|
-
|
|
7679
|
-
|
|
7657
|
+
/** Properties of a CreateReportTaskRequest. */
|
|
7658
|
+
interface ICreateReportTaskRequest {
|
|
7680
7659
|
|
|
7681
|
-
/**
|
|
7682
|
-
|
|
7660
|
+
/** CreateReportTaskRequest parent */
|
|
7661
|
+
parent?: (string|null);
|
|
7683
7662
|
|
|
7684
|
-
/**
|
|
7685
|
-
|
|
7663
|
+
/** CreateReportTaskRequest reportTask */
|
|
7664
|
+
reportTask?: (google.analytics.data.v1alpha.IReportTask|null);
|
|
7686
7665
|
}
|
|
7687
7666
|
|
|
7688
|
-
/** Represents a
|
|
7689
|
-
class
|
|
7667
|
+
/** Represents a CreateReportTaskRequest. */
|
|
7668
|
+
class CreateReportTaskRequest implements ICreateReportTaskRequest {
|
|
7690
7669
|
|
|
7691
7670
|
/**
|
|
7692
|
-
* Constructs a new
|
|
7671
|
+
* Constructs a new CreateReportTaskRequest.
|
|
7693
7672
|
* @param [properties] Properties to set
|
|
7694
7673
|
*/
|
|
7695
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7696
|
-
|
|
7697
|
-
/** FilterExpression andGroup. */
|
|
7698
|
-
public andGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
7699
|
-
|
|
7700
|
-
/** FilterExpression orGroup. */
|
|
7701
|
-
public orGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
7674
|
+
constructor(properties?: google.analytics.data.v1alpha.ICreateReportTaskRequest);
|
|
7702
7675
|
|
|
7703
|
-
/**
|
|
7704
|
-
public
|
|
7705
|
-
|
|
7706
|
-
/** FilterExpression filter. */
|
|
7707
|
-
public filter?: (google.analytics.data.v1alpha.IFilter|null);
|
|
7676
|
+
/** CreateReportTaskRequest parent. */
|
|
7677
|
+
public parent: string;
|
|
7708
7678
|
|
|
7709
|
-
/**
|
|
7710
|
-
public
|
|
7679
|
+
/** CreateReportTaskRequest reportTask. */
|
|
7680
|
+
public reportTask?: (google.analytics.data.v1alpha.IReportTask|null);
|
|
7711
7681
|
|
|
7712
7682
|
/**
|
|
7713
|
-
* Creates a new
|
|
7683
|
+
* Creates a new CreateReportTaskRequest instance using the specified properties.
|
|
7714
7684
|
* @param [properties] Properties to set
|
|
7715
|
-
* @returns
|
|
7685
|
+
* @returns CreateReportTaskRequest instance
|
|
7716
7686
|
*/
|
|
7717
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
7687
|
+
public static create(properties?: google.analytics.data.v1alpha.ICreateReportTaskRequest): google.analytics.data.v1alpha.CreateReportTaskRequest;
|
|
7718
7688
|
|
|
7719
7689
|
/**
|
|
7720
|
-
* Encodes the specified
|
|
7721
|
-
* @param message
|
|
7690
|
+
* Encodes the specified CreateReportTaskRequest message. Does not implicitly {@link google.analytics.data.v1alpha.CreateReportTaskRequest.verify|verify} messages.
|
|
7691
|
+
* @param message CreateReportTaskRequest message or plain object to encode
|
|
7722
7692
|
* @param [writer] Writer to encode to
|
|
7723
7693
|
* @returns Writer
|
|
7724
7694
|
*/
|
|
7725
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
7695
|
+
public static encode(message: google.analytics.data.v1alpha.ICreateReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7726
7696
|
|
|
7727
7697
|
/**
|
|
7728
|
-
* Encodes the specified
|
|
7729
|
-
* @param message
|
|
7698
|
+
* Encodes the specified CreateReportTaskRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.CreateReportTaskRequest.verify|verify} messages.
|
|
7699
|
+
* @param message CreateReportTaskRequest message or plain object to encode
|
|
7730
7700
|
* @param [writer] Writer to encode to
|
|
7731
7701
|
* @returns Writer
|
|
7732
7702
|
*/
|
|
7733
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
7703
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICreateReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7734
7704
|
|
|
7735
7705
|
/**
|
|
7736
|
-
* Decodes a
|
|
7706
|
+
* Decodes a CreateReportTaskRequest message from the specified reader or buffer.
|
|
7737
7707
|
* @param reader Reader or buffer to decode from
|
|
7738
7708
|
* @param [length] Message length if known beforehand
|
|
7739
|
-
* @returns
|
|
7709
|
+
* @returns CreateReportTaskRequest
|
|
7740
7710
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7741
7711
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7742
7712
|
*/
|
|
7743
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7713
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.CreateReportTaskRequest;
|
|
7744
7714
|
|
|
7745
7715
|
/**
|
|
7746
|
-
* Decodes a
|
|
7716
|
+
* Decodes a CreateReportTaskRequest message from the specified reader or buffer, length delimited.
|
|
7747
7717
|
* @param reader Reader or buffer to decode from
|
|
7748
|
-
* @returns
|
|
7718
|
+
* @returns CreateReportTaskRequest
|
|
7749
7719
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7750
7720
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7751
7721
|
*/
|
|
7752
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7722
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.CreateReportTaskRequest;
|
|
7753
7723
|
|
|
7754
7724
|
/**
|
|
7755
|
-
* Verifies a
|
|
7725
|
+
* Verifies a CreateReportTaskRequest message.
|
|
7756
7726
|
* @param message Plain object to verify
|
|
7757
7727
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7758
7728
|
*/
|
|
7759
7729
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7760
7730
|
|
|
7761
7731
|
/**
|
|
7762
|
-
* Creates a
|
|
7732
|
+
* Creates a CreateReportTaskRequest message from a plain object. Also converts values to their respective internal types.
|
|
7763
7733
|
* @param object Plain object
|
|
7764
|
-
* @returns
|
|
7734
|
+
* @returns CreateReportTaskRequest
|
|
7765
7735
|
*/
|
|
7766
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7736
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.CreateReportTaskRequest;
|
|
7767
7737
|
|
|
7768
7738
|
/**
|
|
7769
|
-
* Creates a plain object from a
|
|
7770
|
-
* @param message
|
|
7739
|
+
* Creates a plain object from a CreateReportTaskRequest message. Also converts values to other types if specified.
|
|
7740
|
+
* @param message CreateReportTaskRequest
|
|
7771
7741
|
* @param [options] Conversion options
|
|
7772
7742
|
* @returns Plain object
|
|
7773
7743
|
*/
|
|
7774
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7744
|
+
public static toObject(message: google.analytics.data.v1alpha.CreateReportTaskRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7775
7745
|
|
|
7776
7746
|
/**
|
|
7777
|
-
* Converts this
|
|
7747
|
+
* Converts this CreateReportTaskRequest to JSON.
|
|
7778
7748
|
* @returns JSON object
|
|
7779
7749
|
*/
|
|
7780
7750
|
public toJSON(): { [k: string]: any };
|
|
7781
7751
|
|
|
7782
7752
|
/**
|
|
7783
|
-
* Gets the default type url for
|
|
7753
|
+
* Gets the default type url for CreateReportTaskRequest
|
|
7784
7754
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7785
7755
|
* @returns The default type url
|
|
7786
7756
|
*/
|
|
7787
7757
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7788
7758
|
}
|
|
7789
7759
|
|
|
7790
|
-
/** Properties of a
|
|
7791
|
-
interface
|
|
7792
|
-
|
|
7793
|
-
/** FilterExpressionList expressions */
|
|
7794
|
-
expressions?: (google.analytics.data.v1alpha.IFilterExpression[]|null);
|
|
7760
|
+
/** Properties of a ReportTaskMetadata. */
|
|
7761
|
+
interface IReportTaskMetadata {
|
|
7795
7762
|
}
|
|
7796
7763
|
|
|
7797
|
-
/** Represents a
|
|
7798
|
-
class
|
|
7764
|
+
/** Represents a ReportTaskMetadata. */
|
|
7765
|
+
class ReportTaskMetadata implements IReportTaskMetadata {
|
|
7799
7766
|
|
|
7800
7767
|
/**
|
|
7801
|
-
* Constructs a new
|
|
7768
|
+
* Constructs a new ReportTaskMetadata.
|
|
7802
7769
|
* @param [properties] Properties to set
|
|
7803
7770
|
*/
|
|
7804
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7805
|
-
|
|
7806
|
-
/** FilterExpressionList expressions. */
|
|
7807
|
-
public expressions: google.analytics.data.v1alpha.IFilterExpression[];
|
|
7771
|
+
constructor(properties?: google.analytics.data.v1alpha.IReportTaskMetadata);
|
|
7808
7772
|
|
|
7809
7773
|
/**
|
|
7810
|
-
* Creates a new
|
|
7774
|
+
* Creates a new ReportTaskMetadata instance using the specified properties.
|
|
7811
7775
|
* @param [properties] Properties to set
|
|
7812
|
-
* @returns
|
|
7776
|
+
* @returns ReportTaskMetadata instance
|
|
7813
7777
|
*/
|
|
7814
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
7778
|
+
public static create(properties?: google.analytics.data.v1alpha.IReportTaskMetadata): google.analytics.data.v1alpha.ReportTaskMetadata;
|
|
7815
7779
|
|
|
7816
7780
|
/**
|
|
7817
|
-
* Encodes the specified
|
|
7818
|
-
* @param message
|
|
7781
|
+
* Encodes the specified ReportTaskMetadata message. Does not implicitly {@link google.analytics.data.v1alpha.ReportTaskMetadata.verify|verify} messages.
|
|
7782
|
+
* @param message ReportTaskMetadata message or plain object to encode
|
|
7819
7783
|
* @param [writer] Writer to encode to
|
|
7820
7784
|
* @returns Writer
|
|
7821
7785
|
*/
|
|
7822
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
7786
|
+
public static encode(message: google.analytics.data.v1alpha.IReportTaskMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7823
7787
|
|
|
7824
7788
|
/**
|
|
7825
|
-
* Encodes the specified
|
|
7826
|
-
* @param message
|
|
7789
|
+
* Encodes the specified ReportTaskMetadata message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ReportTaskMetadata.verify|verify} messages.
|
|
7790
|
+
* @param message ReportTaskMetadata message or plain object to encode
|
|
7827
7791
|
* @param [writer] Writer to encode to
|
|
7828
7792
|
* @returns Writer
|
|
7829
7793
|
*/
|
|
7830
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
7794
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IReportTaskMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7831
7795
|
|
|
7832
7796
|
/**
|
|
7833
|
-
* Decodes a
|
|
7797
|
+
* Decodes a ReportTaskMetadata message from the specified reader or buffer.
|
|
7834
7798
|
* @param reader Reader or buffer to decode from
|
|
7835
7799
|
* @param [length] Message length if known beforehand
|
|
7836
|
-
* @returns
|
|
7800
|
+
* @returns ReportTaskMetadata
|
|
7837
7801
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7838
7802
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7839
7803
|
*/
|
|
7840
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7804
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ReportTaskMetadata;
|
|
7841
7805
|
|
|
7842
7806
|
/**
|
|
7843
|
-
* Decodes a
|
|
7807
|
+
* Decodes a ReportTaskMetadata message from the specified reader or buffer, length delimited.
|
|
7844
7808
|
* @param reader Reader or buffer to decode from
|
|
7845
|
-
* @returns
|
|
7809
|
+
* @returns ReportTaskMetadata
|
|
7846
7810
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7847
7811
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7848
7812
|
*/
|
|
7849
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7813
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ReportTaskMetadata;
|
|
7850
7814
|
|
|
7851
7815
|
/**
|
|
7852
|
-
* Verifies a
|
|
7816
|
+
* Verifies a ReportTaskMetadata message.
|
|
7853
7817
|
* @param message Plain object to verify
|
|
7854
7818
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7855
7819
|
*/
|
|
7856
7820
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7857
7821
|
|
|
7858
7822
|
/**
|
|
7859
|
-
* Creates a
|
|
7823
|
+
* Creates a ReportTaskMetadata message from a plain object. Also converts values to their respective internal types.
|
|
7860
7824
|
* @param object Plain object
|
|
7861
|
-
* @returns
|
|
7825
|
+
* @returns ReportTaskMetadata
|
|
7862
7826
|
*/
|
|
7863
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7827
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ReportTaskMetadata;
|
|
7864
7828
|
|
|
7865
7829
|
/**
|
|
7866
|
-
* Creates a plain object from a
|
|
7867
|
-
* @param message
|
|
7830
|
+
* Creates a plain object from a ReportTaskMetadata message. Also converts values to other types if specified.
|
|
7831
|
+
* @param message ReportTaskMetadata
|
|
7868
7832
|
* @param [options] Conversion options
|
|
7869
7833
|
* @returns Plain object
|
|
7870
7834
|
*/
|
|
7871
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7835
|
+
public static toObject(message: google.analytics.data.v1alpha.ReportTaskMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7872
7836
|
|
|
7873
7837
|
/**
|
|
7874
|
-
* Converts this
|
|
7838
|
+
* Converts this ReportTaskMetadata to JSON.
|
|
7875
7839
|
* @returns JSON object
|
|
7876
7840
|
*/
|
|
7877
7841
|
public toJSON(): { [k: string]: any };
|
|
7878
7842
|
|
|
7879
7843
|
/**
|
|
7880
|
-
* Gets the default type url for
|
|
7844
|
+
* Gets the default type url for ReportTaskMetadata
|
|
7881
7845
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
7882
7846
|
* @returns The default type url
|
|
7883
7847
|
*/
|
|
7884
7848
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
7885
7849
|
}
|
|
7886
7850
|
|
|
7887
|
-
/** Properties of a
|
|
7888
|
-
interface
|
|
7889
|
-
|
|
7890
|
-
/** Filter fieldName */
|
|
7891
|
-
fieldName?: (string|null);
|
|
7892
|
-
|
|
7893
|
-
/** Filter stringFilter */
|
|
7894
|
-
stringFilter?: (google.analytics.data.v1alpha.IStringFilter|null);
|
|
7851
|
+
/** Properties of a QueryReportTaskRequest. */
|
|
7852
|
+
interface IQueryReportTaskRequest {
|
|
7895
7853
|
|
|
7896
|
-
/**
|
|
7897
|
-
|
|
7854
|
+
/** QueryReportTaskRequest name */
|
|
7855
|
+
name?: (string|null);
|
|
7898
7856
|
|
|
7899
|
-
/**
|
|
7900
|
-
|
|
7857
|
+
/** QueryReportTaskRequest offset */
|
|
7858
|
+
offset?: (number|Long|string|null);
|
|
7901
7859
|
|
|
7902
|
-
/**
|
|
7903
|
-
|
|
7860
|
+
/** QueryReportTaskRequest limit */
|
|
7861
|
+
limit?: (number|Long|string|null);
|
|
7904
7862
|
}
|
|
7905
7863
|
|
|
7906
|
-
/** Represents a
|
|
7907
|
-
class
|
|
7864
|
+
/** Represents a QueryReportTaskRequest. */
|
|
7865
|
+
class QueryReportTaskRequest implements IQueryReportTaskRequest {
|
|
7908
7866
|
|
|
7909
7867
|
/**
|
|
7910
|
-
* Constructs a new
|
|
7868
|
+
* Constructs a new QueryReportTaskRequest.
|
|
7911
7869
|
* @param [properties] Properties to set
|
|
7912
7870
|
*/
|
|
7913
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7914
|
-
|
|
7915
|
-
/** Filter fieldName. */
|
|
7916
|
-
public fieldName: string;
|
|
7917
|
-
|
|
7918
|
-
/** Filter stringFilter. */
|
|
7919
|
-
public stringFilter?: (google.analytics.data.v1alpha.IStringFilter|null);
|
|
7920
|
-
|
|
7921
|
-
/** Filter inListFilter. */
|
|
7922
|
-
public inListFilter?: (google.analytics.data.v1alpha.IInListFilter|null);
|
|
7871
|
+
constructor(properties?: google.analytics.data.v1alpha.IQueryReportTaskRequest);
|
|
7923
7872
|
|
|
7924
|
-
/**
|
|
7925
|
-
public
|
|
7873
|
+
/** QueryReportTaskRequest name. */
|
|
7874
|
+
public name: string;
|
|
7926
7875
|
|
|
7927
|
-
/**
|
|
7928
|
-
public
|
|
7876
|
+
/** QueryReportTaskRequest offset. */
|
|
7877
|
+
public offset: (number|Long|string);
|
|
7929
7878
|
|
|
7930
|
-
/**
|
|
7931
|
-
public
|
|
7879
|
+
/** QueryReportTaskRequest limit. */
|
|
7880
|
+
public limit: (number|Long|string);
|
|
7932
7881
|
|
|
7933
7882
|
/**
|
|
7934
|
-
* Creates a new
|
|
7883
|
+
* Creates a new QueryReportTaskRequest instance using the specified properties.
|
|
7935
7884
|
* @param [properties] Properties to set
|
|
7936
|
-
* @returns
|
|
7885
|
+
* @returns QueryReportTaskRequest instance
|
|
7937
7886
|
*/
|
|
7938
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
7887
|
+
public static create(properties?: google.analytics.data.v1alpha.IQueryReportTaskRequest): google.analytics.data.v1alpha.QueryReportTaskRequest;
|
|
7939
7888
|
|
|
7940
7889
|
/**
|
|
7941
|
-
* Encodes the specified
|
|
7942
|
-
* @param message
|
|
7890
|
+
* Encodes the specified QueryReportTaskRequest message. Does not implicitly {@link google.analytics.data.v1alpha.QueryReportTaskRequest.verify|verify} messages.
|
|
7891
|
+
* @param message QueryReportTaskRequest message or plain object to encode
|
|
7943
7892
|
* @param [writer] Writer to encode to
|
|
7944
7893
|
* @returns Writer
|
|
7945
7894
|
*/
|
|
7946
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
7895
|
+
public static encode(message: google.analytics.data.v1alpha.IQueryReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7947
7896
|
|
|
7948
7897
|
/**
|
|
7949
|
-
* Encodes the specified
|
|
7950
|
-
* @param message
|
|
7898
|
+
* Encodes the specified QueryReportTaskRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.QueryReportTaskRequest.verify|verify} messages.
|
|
7899
|
+
* @param message QueryReportTaskRequest message or plain object to encode
|
|
7951
7900
|
* @param [writer] Writer to encode to
|
|
7952
7901
|
* @returns Writer
|
|
7953
7902
|
*/
|
|
7954
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
7903
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IQueryReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
7955
7904
|
|
|
7956
7905
|
/**
|
|
7957
|
-
* Decodes a
|
|
7906
|
+
* Decodes a QueryReportTaskRequest message from the specified reader or buffer.
|
|
7958
7907
|
* @param reader Reader or buffer to decode from
|
|
7959
7908
|
* @param [length] Message length if known beforehand
|
|
7960
|
-
* @returns
|
|
7909
|
+
* @returns QueryReportTaskRequest
|
|
7961
7910
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7962
7911
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7963
7912
|
*/
|
|
7964
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
7913
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.QueryReportTaskRequest;
|
|
7965
7914
|
|
|
7966
7915
|
/**
|
|
7967
|
-
* Decodes a
|
|
7916
|
+
* Decodes a QueryReportTaskRequest message from the specified reader or buffer, length delimited.
|
|
7968
7917
|
* @param reader Reader or buffer to decode from
|
|
7969
|
-
* @returns
|
|
7918
|
+
* @returns QueryReportTaskRequest
|
|
7970
7919
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
7971
7920
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
7972
7921
|
*/
|
|
7973
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
7922
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.QueryReportTaskRequest;
|
|
7974
7923
|
|
|
7975
7924
|
/**
|
|
7976
|
-
* Verifies a
|
|
7925
|
+
* Verifies a QueryReportTaskRequest message.
|
|
7977
7926
|
* @param message Plain object to verify
|
|
7978
7927
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
7979
7928
|
*/
|
|
7980
7929
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
7981
7930
|
|
|
7982
7931
|
/**
|
|
7983
|
-
* Creates a
|
|
7932
|
+
* Creates a QueryReportTaskRequest message from a plain object. Also converts values to their respective internal types.
|
|
7984
7933
|
* @param object Plain object
|
|
7985
|
-
* @returns
|
|
7934
|
+
* @returns QueryReportTaskRequest
|
|
7986
7935
|
*/
|
|
7987
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
7936
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.QueryReportTaskRequest;
|
|
7988
7937
|
|
|
7989
7938
|
/**
|
|
7990
|
-
* Creates a plain object from a
|
|
7991
|
-
* @param message
|
|
7939
|
+
* Creates a plain object from a QueryReportTaskRequest message. Also converts values to other types if specified.
|
|
7940
|
+
* @param message QueryReportTaskRequest
|
|
7992
7941
|
* @param [options] Conversion options
|
|
7993
7942
|
* @returns Plain object
|
|
7994
7943
|
*/
|
|
7995
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
7944
|
+
public static toObject(message: google.analytics.data.v1alpha.QueryReportTaskRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
7996
7945
|
|
|
7997
7946
|
/**
|
|
7998
|
-
* Converts this
|
|
7947
|
+
* Converts this QueryReportTaskRequest to JSON.
|
|
7999
7948
|
* @returns JSON object
|
|
8000
7949
|
*/
|
|
8001
7950
|
public toJSON(): { [k: string]: any };
|
|
8002
7951
|
|
|
8003
7952
|
/**
|
|
8004
|
-
* Gets the default type url for
|
|
7953
|
+
* Gets the default type url for QueryReportTaskRequest
|
|
8005
7954
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8006
7955
|
* @returns The default type url
|
|
8007
7956
|
*/
|
|
8008
7957
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8009
7958
|
}
|
|
8010
7959
|
|
|
8011
|
-
/** Properties of a
|
|
8012
|
-
interface
|
|
7960
|
+
/** Properties of a QueryReportTaskResponse. */
|
|
7961
|
+
interface IQueryReportTaskResponse {
|
|
8013
7962
|
|
|
8014
|
-
/**
|
|
8015
|
-
|
|
7963
|
+
/** QueryReportTaskResponse dimensionHeaders */
|
|
7964
|
+
dimensionHeaders?: (google.analytics.data.v1alpha.IDimensionHeader[]|null);
|
|
8016
7965
|
|
|
8017
|
-
/**
|
|
8018
|
-
|
|
7966
|
+
/** QueryReportTaskResponse metricHeaders */
|
|
7967
|
+
metricHeaders?: (google.analytics.data.v1alpha.IMetricHeader[]|null);
|
|
8019
7968
|
|
|
8020
|
-
/**
|
|
8021
|
-
|
|
7969
|
+
/** QueryReportTaskResponse rows */
|
|
7970
|
+
rows?: (google.analytics.data.v1alpha.IRow[]|null);
|
|
7971
|
+
|
|
7972
|
+
/** QueryReportTaskResponse totals */
|
|
7973
|
+
totals?: (google.analytics.data.v1alpha.IRow[]|null);
|
|
7974
|
+
|
|
7975
|
+
/** QueryReportTaskResponse maximums */
|
|
7976
|
+
maximums?: (google.analytics.data.v1alpha.IRow[]|null);
|
|
7977
|
+
|
|
7978
|
+
/** QueryReportTaskResponse minimums */
|
|
7979
|
+
minimums?: (google.analytics.data.v1alpha.IRow[]|null);
|
|
7980
|
+
|
|
7981
|
+
/** QueryReportTaskResponse rowCount */
|
|
7982
|
+
rowCount?: (number|null);
|
|
7983
|
+
|
|
7984
|
+
/** QueryReportTaskResponse metadata */
|
|
7985
|
+
metadata?: (google.analytics.data.v1alpha.IResponseMetaData|null);
|
|
8022
7986
|
}
|
|
8023
7987
|
|
|
8024
|
-
/** Represents a
|
|
8025
|
-
class
|
|
7988
|
+
/** Represents a QueryReportTaskResponse. */
|
|
7989
|
+
class QueryReportTaskResponse implements IQueryReportTaskResponse {
|
|
8026
7990
|
|
|
8027
7991
|
/**
|
|
8028
|
-
* Constructs a new
|
|
7992
|
+
* Constructs a new QueryReportTaskResponse.
|
|
8029
7993
|
* @param [properties] Properties to set
|
|
8030
7994
|
*/
|
|
8031
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
7995
|
+
constructor(properties?: google.analytics.data.v1alpha.IQueryReportTaskResponse);
|
|
8032
7996
|
|
|
8033
|
-
/**
|
|
8034
|
-
public
|
|
7997
|
+
/** QueryReportTaskResponse dimensionHeaders. */
|
|
7998
|
+
public dimensionHeaders: google.analytics.data.v1alpha.IDimensionHeader[];
|
|
8035
7999
|
|
|
8036
|
-
/**
|
|
8037
|
-
public
|
|
8000
|
+
/** QueryReportTaskResponse metricHeaders. */
|
|
8001
|
+
public metricHeaders: google.analytics.data.v1alpha.IMetricHeader[];
|
|
8038
8002
|
|
|
8039
|
-
/**
|
|
8040
|
-
public
|
|
8003
|
+
/** QueryReportTaskResponse rows. */
|
|
8004
|
+
public rows: google.analytics.data.v1alpha.IRow[];
|
|
8005
|
+
|
|
8006
|
+
/** QueryReportTaskResponse totals. */
|
|
8007
|
+
public totals: google.analytics.data.v1alpha.IRow[];
|
|
8008
|
+
|
|
8009
|
+
/** QueryReportTaskResponse maximums. */
|
|
8010
|
+
public maximums: google.analytics.data.v1alpha.IRow[];
|
|
8011
|
+
|
|
8012
|
+
/** QueryReportTaskResponse minimums. */
|
|
8013
|
+
public minimums: google.analytics.data.v1alpha.IRow[];
|
|
8014
|
+
|
|
8015
|
+
/** QueryReportTaskResponse rowCount. */
|
|
8016
|
+
public rowCount: number;
|
|
8017
|
+
|
|
8018
|
+
/** QueryReportTaskResponse metadata. */
|
|
8019
|
+
public metadata?: (google.analytics.data.v1alpha.IResponseMetaData|null);
|
|
8041
8020
|
|
|
8042
8021
|
/**
|
|
8043
|
-
* Creates a new
|
|
8022
|
+
* Creates a new QueryReportTaskResponse instance using the specified properties.
|
|
8044
8023
|
* @param [properties] Properties to set
|
|
8045
|
-
* @returns
|
|
8024
|
+
* @returns QueryReportTaskResponse instance
|
|
8046
8025
|
*/
|
|
8047
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
8026
|
+
public static create(properties?: google.analytics.data.v1alpha.IQueryReportTaskResponse): google.analytics.data.v1alpha.QueryReportTaskResponse;
|
|
8048
8027
|
|
|
8049
8028
|
/**
|
|
8050
|
-
* Encodes the specified
|
|
8051
|
-
* @param message
|
|
8029
|
+
* Encodes the specified QueryReportTaskResponse message. Does not implicitly {@link google.analytics.data.v1alpha.QueryReportTaskResponse.verify|verify} messages.
|
|
8030
|
+
* @param message QueryReportTaskResponse message or plain object to encode
|
|
8052
8031
|
* @param [writer] Writer to encode to
|
|
8053
8032
|
* @returns Writer
|
|
8054
8033
|
*/
|
|
8055
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
8034
|
+
public static encode(message: google.analytics.data.v1alpha.IQueryReportTaskResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8056
8035
|
|
|
8057
8036
|
/**
|
|
8058
|
-
* Encodes the specified
|
|
8059
|
-
* @param message
|
|
8037
|
+
* Encodes the specified QueryReportTaskResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.QueryReportTaskResponse.verify|verify} messages.
|
|
8038
|
+
* @param message QueryReportTaskResponse message or plain object to encode
|
|
8060
8039
|
* @param [writer] Writer to encode to
|
|
8061
8040
|
* @returns Writer
|
|
8062
8041
|
*/
|
|
8063
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
8042
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IQueryReportTaskResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8064
8043
|
|
|
8065
8044
|
/**
|
|
8066
|
-
* Decodes a
|
|
8045
|
+
* Decodes a QueryReportTaskResponse message from the specified reader or buffer.
|
|
8067
8046
|
* @param reader Reader or buffer to decode from
|
|
8068
8047
|
* @param [length] Message length if known beforehand
|
|
8069
|
-
* @returns
|
|
8048
|
+
* @returns QueryReportTaskResponse
|
|
8070
8049
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8071
8050
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8072
8051
|
*/
|
|
8073
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
8052
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.QueryReportTaskResponse;
|
|
8074
8053
|
|
|
8075
8054
|
/**
|
|
8076
|
-
* Decodes a
|
|
8055
|
+
* Decodes a QueryReportTaskResponse message from the specified reader or buffer, length delimited.
|
|
8077
8056
|
* @param reader Reader or buffer to decode from
|
|
8078
|
-
* @returns
|
|
8057
|
+
* @returns QueryReportTaskResponse
|
|
8079
8058
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8080
8059
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8081
8060
|
*/
|
|
8082
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
8061
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.QueryReportTaskResponse;
|
|
8083
8062
|
|
|
8084
8063
|
/**
|
|
8085
|
-
* Verifies a
|
|
8064
|
+
* Verifies a QueryReportTaskResponse message.
|
|
8086
8065
|
* @param message Plain object to verify
|
|
8087
8066
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8088
8067
|
*/
|
|
8089
8068
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8090
8069
|
|
|
8091
8070
|
/**
|
|
8092
|
-
* Creates a
|
|
8071
|
+
* Creates a QueryReportTaskResponse message from a plain object. Also converts values to their respective internal types.
|
|
8093
8072
|
* @param object Plain object
|
|
8094
|
-
* @returns
|
|
8073
|
+
* @returns QueryReportTaskResponse
|
|
8095
8074
|
*/
|
|
8096
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
8075
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.QueryReportTaskResponse;
|
|
8097
8076
|
|
|
8098
8077
|
/**
|
|
8099
|
-
* Creates a plain object from a
|
|
8100
|
-
* @param message
|
|
8078
|
+
* Creates a plain object from a QueryReportTaskResponse message. Also converts values to other types if specified.
|
|
8079
|
+
* @param message QueryReportTaskResponse
|
|
8101
8080
|
* @param [options] Conversion options
|
|
8102
8081
|
* @returns Plain object
|
|
8103
8082
|
*/
|
|
8104
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
8083
|
+
public static toObject(message: google.analytics.data.v1alpha.QueryReportTaskResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8105
8084
|
|
|
8106
8085
|
/**
|
|
8107
|
-
* Converts this
|
|
8086
|
+
* Converts this QueryReportTaskResponse to JSON.
|
|
8108
8087
|
* @returns JSON object
|
|
8109
8088
|
*/
|
|
8110
8089
|
public toJSON(): { [k: string]: any };
|
|
8111
8090
|
|
|
8112
8091
|
/**
|
|
8113
|
-
* Gets the default type url for
|
|
8092
|
+
* Gets the default type url for QueryReportTaskResponse
|
|
8114
8093
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8115
8094
|
* @returns The default type url
|
|
8116
8095
|
*/
|
|
8117
8096
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8118
8097
|
}
|
|
8119
8098
|
|
|
8120
|
-
|
|
8121
|
-
|
|
8122
|
-
/** MatchType enum. */
|
|
8123
|
-
enum MatchType {
|
|
8124
|
-
MATCH_TYPE_UNSPECIFIED = 0,
|
|
8125
|
-
EXACT = 1,
|
|
8126
|
-
BEGINS_WITH = 2,
|
|
8127
|
-
ENDS_WITH = 3,
|
|
8128
|
-
CONTAINS = 4,
|
|
8129
|
-
FULL_REGEXP = 5,
|
|
8130
|
-
PARTIAL_REGEXP = 6
|
|
8131
|
-
}
|
|
8132
|
-
}
|
|
8133
|
-
|
|
8134
|
-
/** Properties of an InListFilter. */
|
|
8135
|
-
interface IInListFilter {
|
|
8136
|
-
|
|
8137
|
-
/** InListFilter values */
|
|
8138
|
-
values?: (string[]|null);
|
|
8099
|
+
/** Properties of a GetReportTaskRequest. */
|
|
8100
|
+
interface IGetReportTaskRequest {
|
|
8139
8101
|
|
|
8140
|
-
/**
|
|
8141
|
-
|
|
8102
|
+
/** GetReportTaskRequest name */
|
|
8103
|
+
name?: (string|null);
|
|
8142
8104
|
}
|
|
8143
8105
|
|
|
8144
|
-
/** Represents
|
|
8145
|
-
class
|
|
8106
|
+
/** Represents a GetReportTaskRequest. */
|
|
8107
|
+
class GetReportTaskRequest implements IGetReportTaskRequest {
|
|
8146
8108
|
|
|
8147
8109
|
/**
|
|
8148
|
-
* Constructs a new
|
|
8110
|
+
* Constructs a new GetReportTaskRequest.
|
|
8149
8111
|
* @param [properties] Properties to set
|
|
8150
8112
|
*/
|
|
8151
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
8152
|
-
|
|
8153
|
-
/** InListFilter values. */
|
|
8154
|
-
public values: string[];
|
|
8113
|
+
constructor(properties?: google.analytics.data.v1alpha.IGetReportTaskRequest);
|
|
8155
8114
|
|
|
8156
|
-
/**
|
|
8157
|
-
public
|
|
8115
|
+
/** GetReportTaskRequest name. */
|
|
8116
|
+
public name: string;
|
|
8158
8117
|
|
|
8159
8118
|
/**
|
|
8160
|
-
* Creates a new
|
|
8119
|
+
* Creates a new GetReportTaskRequest instance using the specified properties.
|
|
8161
8120
|
* @param [properties] Properties to set
|
|
8162
|
-
* @returns
|
|
8121
|
+
* @returns GetReportTaskRequest instance
|
|
8163
8122
|
*/
|
|
8164
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
8123
|
+
public static create(properties?: google.analytics.data.v1alpha.IGetReportTaskRequest): google.analytics.data.v1alpha.GetReportTaskRequest;
|
|
8165
8124
|
|
|
8166
8125
|
/**
|
|
8167
|
-
* Encodes the specified
|
|
8168
|
-
* @param message
|
|
8126
|
+
* Encodes the specified GetReportTaskRequest message. Does not implicitly {@link google.analytics.data.v1alpha.GetReportTaskRequest.verify|verify} messages.
|
|
8127
|
+
* @param message GetReportTaskRequest message or plain object to encode
|
|
8169
8128
|
* @param [writer] Writer to encode to
|
|
8170
8129
|
* @returns Writer
|
|
8171
8130
|
*/
|
|
8172
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
8131
|
+
public static encode(message: google.analytics.data.v1alpha.IGetReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8173
8132
|
|
|
8174
8133
|
/**
|
|
8175
|
-
* Encodes the specified
|
|
8176
|
-
* @param message
|
|
8134
|
+
* Encodes the specified GetReportTaskRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.GetReportTaskRequest.verify|verify} messages.
|
|
8135
|
+
* @param message GetReportTaskRequest message or plain object to encode
|
|
8177
8136
|
* @param [writer] Writer to encode to
|
|
8178
8137
|
* @returns Writer
|
|
8179
8138
|
*/
|
|
8180
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
8139
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IGetReportTaskRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8181
8140
|
|
|
8182
8141
|
/**
|
|
8183
|
-
* Decodes
|
|
8142
|
+
* Decodes a GetReportTaskRequest message from the specified reader or buffer.
|
|
8184
8143
|
* @param reader Reader or buffer to decode from
|
|
8185
8144
|
* @param [length] Message length if known beforehand
|
|
8186
|
-
* @returns
|
|
8145
|
+
* @returns GetReportTaskRequest
|
|
8187
8146
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8188
8147
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8189
8148
|
*/
|
|
8190
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
8149
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.GetReportTaskRequest;
|
|
8191
8150
|
|
|
8192
8151
|
/**
|
|
8193
|
-
* Decodes
|
|
8152
|
+
* Decodes a GetReportTaskRequest message from the specified reader or buffer, length delimited.
|
|
8194
8153
|
* @param reader Reader or buffer to decode from
|
|
8195
|
-
* @returns
|
|
8154
|
+
* @returns GetReportTaskRequest
|
|
8196
8155
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8197
8156
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8198
8157
|
*/
|
|
8199
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
8158
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.GetReportTaskRequest;
|
|
8200
8159
|
|
|
8201
8160
|
/**
|
|
8202
|
-
* Verifies
|
|
8161
|
+
* Verifies a GetReportTaskRequest message.
|
|
8203
8162
|
* @param message Plain object to verify
|
|
8204
8163
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8205
8164
|
*/
|
|
8206
8165
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8207
8166
|
|
|
8208
8167
|
/**
|
|
8209
|
-
* Creates
|
|
8168
|
+
* Creates a GetReportTaskRequest message from a plain object. Also converts values to their respective internal types.
|
|
8210
8169
|
* @param object Plain object
|
|
8211
|
-
* @returns
|
|
8170
|
+
* @returns GetReportTaskRequest
|
|
8212
8171
|
*/
|
|
8213
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
8172
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.GetReportTaskRequest;
|
|
8214
8173
|
|
|
8215
8174
|
/**
|
|
8216
|
-
* Creates a plain object from
|
|
8217
|
-
* @param message
|
|
8175
|
+
* Creates a plain object from a GetReportTaskRequest message. Also converts values to other types if specified.
|
|
8176
|
+
* @param message GetReportTaskRequest
|
|
8218
8177
|
* @param [options] Conversion options
|
|
8219
8178
|
* @returns Plain object
|
|
8220
8179
|
*/
|
|
8221
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
8180
|
+
public static toObject(message: google.analytics.data.v1alpha.GetReportTaskRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8222
8181
|
|
|
8223
8182
|
/**
|
|
8224
|
-
* Converts this
|
|
8183
|
+
* Converts this GetReportTaskRequest to JSON.
|
|
8225
8184
|
* @returns JSON object
|
|
8226
8185
|
*/
|
|
8227
8186
|
public toJSON(): { [k: string]: any };
|
|
8228
8187
|
|
|
8229
8188
|
/**
|
|
8230
|
-
* Gets the default type url for
|
|
8189
|
+
* Gets the default type url for GetReportTaskRequest
|
|
8231
8190
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8232
8191
|
* @returns The default type url
|
|
8233
8192
|
*/
|
|
8234
8193
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8235
8194
|
}
|
|
8236
8195
|
|
|
8237
|
-
/** Properties of a
|
|
8238
|
-
interface
|
|
8196
|
+
/** Properties of a ListReportTasksRequest. */
|
|
8197
|
+
interface IListReportTasksRequest {
|
|
8239
8198
|
|
|
8240
|
-
/**
|
|
8241
|
-
|
|
8199
|
+
/** ListReportTasksRequest parent */
|
|
8200
|
+
parent?: (string|null);
|
|
8242
8201
|
|
|
8243
|
-
/**
|
|
8244
|
-
|
|
8202
|
+
/** ListReportTasksRequest pageSize */
|
|
8203
|
+
pageSize?: (number|null);
|
|
8204
|
+
|
|
8205
|
+
/** ListReportTasksRequest pageToken */
|
|
8206
|
+
pageToken?: (string|null);
|
|
8245
8207
|
}
|
|
8246
8208
|
|
|
8247
|
-
/** Represents a
|
|
8248
|
-
class
|
|
8209
|
+
/** Represents a ListReportTasksRequest. */
|
|
8210
|
+
class ListReportTasksRequest implements IListReportTasksRequest {
|
|
8249
8211
|
|
|
8250
8212
|
/**
|
|
8251
|
-
* Constructs a new
|
|
8213
|
+
* Constructs a new ListReportTasksRequest.
|
|
8252
8214
|
* @param [properties] Properties to set
|
|
8253
8215
|
*/
|
|
8254
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
8216
|
+
constructor(properties?: google.analytics.data.v1alpha.IListReportTasksRequest);
|
|
8255
8217
|
|
|
8256
|
-
/**
|
|
8257
|
-
public
|
|
8218
|
+
/** ListReportTasksRequest parent. */
|
|
8219
|
+
public parent: string;
|
|
8258
8220
|
|
|
8259
|
-
/**
|
|
8260
|
-
public
|
|
8221
|
+
/** ListReportTasksRequest pageSize. */
|
|
8222
|
+
public pageSize: number;
|
|
8223
|
+
|
|
8224
|
+
/** ListReportTasksRequest pageToken. */
|
|
8225
|
+
public pageToken: string;
|
|
8261
8226
|
|
|
8262
8227
|
/**
|
|
8263
|
-
* Creates a new
|
|
8228
|
+
* Creates a new ListReportTasksRequest instance using the specified properties.
|
|
8264
8229
|
* @param [properties] Properties to set
|
|
8265
|
-
* @returns
|
|
8230
|
+
* @returns ListReportTasksRequest instance
|
|
8266
8231
|
*/
|
|
8267
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
8232
|
+
public static create(properties?: google.analytics.data.v1alpha.IListReportTasksRequest): google.analytics.data.v1alpha.ListReportTasksRequest;
|
|
8268
8233
|
|
|
8269
8234
|
/**
|
|
8270
|
-
* Encodes the specified
|
|
8271
|
-
* @param message
|
|
8235
|
+
* Encodes the specified ListReportTasksRequest message. Does not implicitly {@link google.analytics.data.v1alpha.ListReportTasksRequest.verify|verify} messages.
|
|
8236
|
+
* @param message ListReportTasksRequest message or plain object to encode
|
|
8272
8237
|
* @param [writer] Writer to encode to
|
|
8273
8238
|
* @returns Writer
|
|
8274
8239
|
*/
|
|
8275
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
8240
|
+
public static encode(message: google.analytics.data.v1alpha.IListReportTasksRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8276
8241
|
|
|
8277
8242
|
/**
|
|
8278
|
-
* Encodes the specified
|
|
8279
|
-
* @param message
|
|
8243
|
+
* Encodes the specified ListReportTasksRequest message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ListReportTasksRequest.verify|verify} messages.
|
|
8244
|
+
* @param message ListReportTasksRequest message or plain object to encode
|
|
8280
8245
|
* @param [writer] Writer to encode to
|
|
8281
8246
|
* @returns Writer
|
|
8282
8247
|
*/
|
|
8283
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
8248
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IListReportTasksRequest, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8284
8249
|
|
|
8285
8250
|
/**
|
|
8286
|
-
* Decodes a
|
|
8251
|
+
* Decodes a ListReportTasksRequest message from the specified reader or buffer.
|
|
8287
8252
|
* @param reader Reader or buffer to decode from
|
|
8288
8253
|
* @param [length] Message length if known beforehand
|
|
8289
|
-
* @returns
|
|
8254
|
+
* @returns ListReportTasksRequest
|
|
8290
8255
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8291
8256
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8292
8257
|
*/
|
|
8293
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
8258
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ListReportTasksRequest;
|
|
8294
8259
|
|
|
8295
8260
|
/**
|
|
8296
|
-
* Decodes a
|
|
8261
|
+
* Decodes a ListReportTasksRequest message from the specified reader or buffer, length delimited.
|
|
8297
8262
|
* @param reader Reader or buffer to decode from
|
|
8298
|
-
* @returns
|
|
8263
|
+
* @returns ListReportTasksRequest
|
|
8299
8264
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8300
8265
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8301
8266
|
*/
|
|
8302
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
8267
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ListReportTasksRequest;
|
|
8303
8268
|
|
|
8304
8269
|
/**
|
|
8305
|
-
* Verifies a
|
|
8270
|
+
* Verifies a ListReportTasksRequest message.
|
|
8306
8271
|
* @param message Plain object to verify
|
|
8307
8272
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8308
8273
|
*/
|
|
8309
8274
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8310
8275
|
|
|
8311
8276
|
/**
|
|
8312
|
-
* Creates a
|
|
8277
|
+
* Creates a ListReportTasksRequest message from a plain object. Also converts values to their respective internal types.
|
|
8313
8278
|
* @param object Plain object
|
|
8314
|
-
* @returns
|
|
8279
|
+
* @returns ListReportTasksRequest
|
|
8315
8280
|
*/
|
|
8316
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
8281
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ListReportTasksRequest;
|
|
8317
8282
|
|
|
8318
8283
|
/**
|
|
8319
|
-
* Creates a plain object from a
|
|
8320
|
-
* @param message
|
|
8284
|
+
* Creates a plain object from a ListReportTasksRequest message. Also converts values to other types if specified.
|
|
8285
|
+
* @param message ListReportTasksRequest
|
|
8321
8286
|
* @param [options] Conversion options
|
|
8322
8287
|
* @returns Plain object
|
|
8323
8288
|
*/
|
|
8324
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
8289
|
+
public static toObject(message: google.analytics.data.v1alpha.ListReportTasksRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8325
8290
|
|
|
8326
8291
|
/**
|
|
8327
|
-
* Converts this
|
|
8292
|
+
* Converts this ListReportTasksRequest to JSON.
|
|
8328
8293
|
* @returns JSON object
|
|
8329
8294
|
*/
|
|
8330
8295
|
public toJSON(): { [k: string]: any };
|
|
8331
8296
|
|
|
8332
8297
|
/**
|
|
8333
|
-
* Gets the default type url for
|
|
8298
|
+
* Gets the default type url for ListReportTasksRequest
|
|
8334
8299
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8335
8300
|
* @returns The default type url
|
|
8336
8301
|
*/
|
|
8337
8302
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8338
8303
|
}
|
|
8339
8304
|
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
/** Operation enum. */
|
|
8343
|
-
enum Operation {
|
|
8344
|
-
OPERATION_UNSPECIFIED = 0,
|
|
8345
|
-
EQUAL = 1,
|
|
8346
|
-
LESS_THAN = 2,
|
|
8347
|
-
LESS_THAN_OR_EQUAL = 3,
|
|
8348
|
-
GREATER_THAN = 4,
|
|
8349
|
-
GREATER_THAN_OR_EQUAL = 5
|
|
8350
|
-
}
|
|
8351
|
-
}
|
|
8352
|
-
|
|
8353
|
-
/** Properties of a BetweenFilter. */
|
|
8354
|
-
interface IBetweenFilter {
|
|
8305
|
+
/** Properties of a ListReportTasksResponse. */
|
|
8306
|
+
interface IListReportTasksResponse {
|
|
8355
8307
|
|
|
8356
|
-
/**
|
|
8357
|
-
|
|
8308
|
+
/** ListReportTasksResponse reportTasks */
|
|
8309
|
+
reportTasks?: (google.analytics.data.v1alpha.IReportTask[]|null);
|
|
8358
8310
|
|
|
8359
|
-
/**
|
|
8360
|
-
|
|
8311
|
+
/** ListReportTasksResponse nextPageToken */
|
|
8312
|
+
nextPageToken?: (string|null);
|
|
8361
8313
|
}
|
|
8362
8314
|
|
|
8363
|
-
/** Represents a
|
|
8364
|
-
class
|
|
8315
|
+
/** Represents a ListReportTasksResponse. */
|
|
8316
|
+
class ListReportTasksResponse implements IListReportTasksResponse {
|
|
8365
8317
|
|
|
8366
8318
|
/**
|
|
8367
|
-
* Constructs a new
|
|
8319
|
+
* Constructs a new ListReportTasksResponse.
|
|
8368
8320
|
* @param [properties] Properties to set
|
|
8369
8321
|
*/
|
|
8370
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
8322
|
+
constructor(properties?: google.analytics.data.v1alpha.IListReportTasksResponse);
|
|
8371
8323
|
|
|
8372
|
-
/**
|
|
8373
|
-
public
|
|
8324
|
+
/** ListReportTasksResponse reportTasks. */
|
|
8325
|
+
public reportTasks: google.analytics.data.v1alpha.IReportTask[];
|
|
8374
8326
|
|
|
8375
|
-
/**
|
|
8376
|
-
public
|
|
8327
|
+
/** ListReportTasksResponse nextPageToken. */
|
|
8328
|
+
public nextPageToken?: (string|null);
|
|
8329
|
+
|
|
8330
|
+
/** ListReportTasksResponse _nextPageToken. */
|
|
8331
|
+
public _nextPageToken?: "nextPageToken";
|
|
8377
8332
|
|
|
8378
8333
|
/**
|
|
8379
|
-
* Creates a new
|
|
8334
|
+
* Creates a new ListReportTasksResponse instance using the specified properties.
|
|
8380
8335
|
* @param [properties] Properties to set
|
|
8381
|
-
* @returns
|
|
8336
|
+
* @returns ListReportTasksResponse instance
|
|
8382
8337
|
*/
|
|
8383
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
8338
|
+
public static create(properties?: google.analytics.data.v1alpha.IListReportTasksResponse): google.analytics.data.v1alpha.ListReportTasksResponse;
|
|
8384
8339
|
|
|
8385
8340
|
/**
|
|
8386
|
-
* Encodes the specified
|
|
8387
|
-
* @param message
|
|
8341
|
+
* Encodes the specified ListReportTasksResponse message. Does not implicitly {@link google.analytics.data.v1alpha.ListReportTasksResponse.verify|verify} messages.
|
|
8342
|
+
* @param message ListReportTasksResponse message or plain object to encode
|
|
8388
8343
|
* @param [writer] Writer to encode to
|
|
8389
8344
|
* @returns Writer
|
|
8390
8345
|
*/
|
|
8391
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
8346
|
+
public static encode(message: google.analytics.data.v1alpha.IListReportTasksResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8392
8347
|
|
|
8393
8348
|
/**
|
|
8394
|
-
* Encodes the specified
|
|
8395
|
-
* @param message
|
|
8349
|
+
* Encodes the specified ListReportTasksResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ListReportTasksResponse.verify|verify} messages.
|
|
8350
|
+
* @param message ListReportTasksResponse message or plain object to encode
|
|
8396
8351
|
* @param [writer] Writer to encode to
|
|
8397
8352
|
* @returns Writer
|
|
8398
8353
|
*/
|
|
8399
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
8354
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IListReportTasksResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8400
8355
|
|
|
8401
8356
|
/**
|
|
8402
|
-
* Decodes a
|
|
8357
|
+
* Decodes a ListReportTasksResponse message from the specified reader or buffer.
|
|
8403
8358
|
* @param reader Reader or buffer to decode from
|
|
8404
8359
|
* @param [length] Message length if known beforehand
|
|
8405
|
-
* @returns
|
|
8360
|
+
* @returns ListReportTasksResponse
|
|
8406
8361
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8407
8362
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8408
8363
|
*/
|
|
8409
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
8364
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ListReportTasksResponse;
|
|
8410
8365
|
|
|
8411
8366
|
/**
|
|
8412
|
-
* Decodes a
|
|
8367
|
+
* Decodes a ListReportTasksResponse message from the specified reader or buffer, length delimited.
|
|
8413
8368
|
* @param reader Reader or buffer to decode from
|
|
8414
|
-
* @returns
|
|
8369
|
+
* @returns ListReportTasksResponse
|
|
8415
8370
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8416
8371
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8417
8372
|
*/
|
|
8418
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
8373
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ListReportTasksResponse;
|
|
8419
8374
|
|
|
8420
8375
|
/**
|
|
8421
|
-
* Verifies a
|
|
8376
|
+
* Verifies a ListReportTasksResponse message.
|
|
8422
8377
|
* @param message Plain object to verify
|
|
8423
8378
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8424
8379
|
*/
|
|
8425
8380
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8426
8381
|
|
|
8427
8382
|
/**
|
|
8428
|
-
* Creates a
|
|
8383
|
+
* Creates a ListReportTasksResponse message from a plain object. Also converts values to their respective internal types.
|
|
8429
8384
|
* @param object Plain object
|
|
8430
|
-
* @returns
|
|
8385
|
+
* @returns ListReportTasksResponse
|
|
8431
8386
|
*/
|
|
8432
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
8387
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ListReportTasksResponse;
|
|
8433
8388
|
|
|
8434
8389
|
/**
|
|
8435
|
-
* Creates a plain object from a
|
|
8390
|
+
* Creates a plain object from a ListReportTasksResponse message. Also converts values to other types if specified.
|
|
8391
|
+
* @param message ListReportTasksResponse
|
|
8392
|
+
* @param [options] Conversion options
|
|
8393
|
+
* @returns Plain object
|
|
8394
|
+
*/
|
|
8395
|
+
public static toObject(message: google.analytics.data.v1alpha.ListReportTasksResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8396
|
+
|
|
8397
|
+
/**
|
|
8398
|
+
* Converts this ListReportTasksResponse to JSON.
|
|
8399
|
+
* @returns JSON object
|
|
8400
|
+
*/
|
|
8401
|
+
public toJSON(): { [k: string]: any };
|
|
8402
|
+
|
|
8403
|
+
/**
|
|
8404
|
+
* Gets the default type url for ListReportTasksResponse
|
|
8405
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8406
|
+
* @returns The default type url
|
|
8407
|
+
*/
|
|
8408
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8409
|
+
}
|
|
8410
|
+
|
|
8411
|
+
/** Properties of a DateRange. */
|
|
8412
|
+
interface IDateRange {
|
|
8413
|
+
|
|
8414
|
+
/** DateRange startDate */
|
|
8415
|
+
startDate?: (string|null);
|
|
8416
|
+
|
|
8417
|
+
/** DateRange endDate */
|
|
8418
|
+
endDate?: (string|null);
|
|
8419
|
+
|
|
8420
|
+
/** DateRange name */
|
|
8421
|
+
name?: (string|null);
|
|
8422
|
+
}
|
|
8423
|
+
|
|
8424
|
+
/** Represents a DateRange. */
|
|
8425
|
+
class DateRange implements IDateRange {
|
|
8426
|
+
|
|
8427
|
+
/**
|
|
8428
|
+
* Constructs a new DateRange.
|
|
8429
|
+
* @param [properties] Properties to set
|
|
8430
|
+
*/
|
|
8431
|
+
constructor(properties?: google.analytics.data.v1alpha.IDateRange);
|
|
8432
|
+
|
|
8433
|
+
/** DateRange startDate. */
|
|
8434
|
+
public startDate: string;
|
|
8435
|
+
|
|
8436
|
+
/** DateRange endDate. */
|
|
8437
|
+
public endDate: string;
|
|
8438
|
+
|
|
8439
|
+
/** DateRange name. */
|
|
8440
|
+
public name: string;
|
|
8441
|
+
|
|
8442
|
+
/**
|
|
8443
|
+
* Creates a new DateRange instance using the specified properties.
|
|
8444
|
+
* @param [properties] Properties to set
|
|
8445
|
+
* @returns DateRange instance
|
|
8446
|
+
*/
|
|
8447
|
+
public static create(properties?: google.analytics.data.v1alpha.IDateRange): google.analytics.data.v1alpha.DateRange;
|
|
8448
|
+
|
|
8449
|
+
/**
|
|
8450
|
+
* Encodes the specified DateRange message. Does not implicitly {@link google.analytics.data.v1alpha.DateRange.verify|verify} messages.
|
|
8451
|
+
* @param message DateRange message or plain object to encode
|
|
8452
|
+
* @param [writer] Writer to encode to
|
|
8453
|
+
* @returns Writer
|
|
8454
|
+
*/
|
|
8455
|
+
public static encode(message: google.analytics.data.v1alpha.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8456
|
+
|
|
8457
|
+
/**
|
|
8458
|
+
* Encodes the specified DateRange message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DateRange.verify|verify} messages.
|
|
8459
|
+
* @param message DateRange message or plain object to encode
|
|
8460
|
+
* @param [writer] Writer to encode to
|
|
8461
|
+
* @returns Writer
|
|
8462
|
+
*/
|
|
8463
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IDateRange, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8464
|
+
|
|
8465
|
+
/**
|
|
8466
|
+
* Decodes a DateRange message from the specified reader or buffer.
|
|
8467
|
+
* @param reader Reader or buffer to decode from
|
|
8468
|
+
* @param [length] Message length if known beforehand
|
|
8469
|
+
* @returns DateRange
|
|
8470
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8471
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8472
|
+
*/
|
|
8473
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.DateRange;
|
|
8474
|
+
|
|
8475
|
+
/**
|
|
8476
|
+
* Decodes a DateRange message from the specified reader or buffer, length delimited.
|
|
8477
|
+
* @param reader Reader or buffer to decode from
|
|
8478
|
+
* @returns DateRange
|
|
8479
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8480
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8481
|
+
*/
|
|
8482
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.DateRange;
|
|
8483
|
+
|
|
8484
|
+
/**
|
|
8485
|
+
* Verifies a DateRange message.
|
|
8486
|
+
* @param message Plain object to verify
|
|
8487
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8488
|
+
*/
|
|
8489
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8490
|
+
|
|
8491
|
+
/**
|
|
8492
|
+
* Creates a DateRange message from a plain object. Also converts values to their respective internal types.
|
|
8493
|
+
* @param object Plain object
|
|
8494
|
+
* @returns DateRange
|
|
8495
|
+
*/
|
|
8496
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.DateRange;
|
|
8497
|
+
|
|
8498
|
+
/**
|
|
8499
|
+
* Creates a plain object from a DateRange message. Also converts values to other types if specified.
|
|
8500
|
+
* @param message DateRange
|
|
8501
|
+
* @param [options] Conversion options
|
|
8502
|
+
* @returns Plain object
|
|
8503
|
+
*/
|
|
8504
|
+
public static toObject(message: google.analytics.data.v1alpha.DateRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8505
|
+
|
|
8506
|
+
/**
|
|
8507
|
+
* Converts this DateRange to JSON.
|
|
8508
|
+
* @returns JSON object
|
|
8509
|
+
*/
|
|
8510
|
+
public toJSON(): { [k: string]: any };
|
|
8511
|
+
|
|
8512
|
+
/**
|
|
8513
|
+
* Gets the default type url for DateRange
|
|
8514
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8515
|
+
* @returns The default type url
|
|
8516
|
+
*/
|
|
8517
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8518
|
+
}
|
|
8519
|
+
|
|
8520
|
+
/** Properties of a Dimension. */
|
|
8521
|
+
interface IDimension {
|
|
8522
|
+
|
|
8523
|
+
/** Dimension name */
|
|
8524
|
+
name?: (string|null);
|
|
8525
|
+
|
|
8526
|
+
/** Dimension dimensionExpression */
|
|
8527
|
+
dimensionExpression?: (google.analytics.data.v1alpha.IDimensionExpression|null);
|
|
8528
|
+
}
|
|
8529
|
+
|
|
8530
|
+
/** Represents a Dimension. */
|
|
8531
|
+
class Dimension implements IDimension {
|
|
8532
|
+
|
|
8533
|
+
/**
|
|
8534
|
+
* Constructs a new Dimension.
|
|
8535
|
+
* @param [properties] Properties to set
|
|
8536
|
+
*/
|
|
8537
|
+
constructor(properties?: google.analytics.data.v1alpha.IDimension);
|
|
8538
|
+
|
|
8539
|
+
/** Dimension name. */
|
|
8540
|
+
public name: string;
|
|
8541
|
+
|
|
8542
|
+
/** Dimension dimensionExpression. */
|
|
8543
|
+
public dimensionExpression?: (google.analytics.data.v1alpha.IDimensionExpression|null);
|
|
8544
|
+
|
|
8545
|
+
/**
|
|
8546
|
+
* Creates a new Dimension instance using the specified properties.
|
|
8547
|
+
* @param [properties] Properties to set
|
|
8548
|
+
* @returns Dimension instance
|
|
8549
|
+
*/
|
|
8550
|
+
public static create(properties?: google.analytics.data.v1alpha.IDimension): google.analytics.data.v1alpha.Dimension;
|
|
8551
|
+
|
|
8552
|
+
/**
|
|
8553
|
+
* Encodes the specified Dimension message. Does not implicitly {@link google.analytics.data.v1alpha.Dimension.verify|verify} messages.
|
|
8554
|
+
* @param message Dimension message or plain object to encode
|
|
8555
|
+
* @param [writer] Writer to encode to
|
|
8556
|
+
* @returns Writer
|
|
8557
|
+
*/
|
|
8558
|
+
public static encode(message: google.analytics.data.v1alpha.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8559
|
+
|
|
8560
|
+
/**
|
|
8561
|
+
* Encodes the specified Dimension message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.Dimension.verify|verify} messages.
|
|
8562
|
+
* @param message Dimension message or plain object to encode
|
|
8563
|
+
* @param [writer] Writer to encode to
|
|
8564
|
+
* @returns Writer
|
|
8565
|
+
*/
|
|
8566
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IDimension, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8567
|
+
|
|
8568
|
+
/**
|
|
8569
|
+
* Decodes a Dimension message from the specified reader or buffer.
|
|
8570
|
+
* @param reader Reader or buffer to decode from
|
|
8571
|
+
* @param [length] Message length if known beforehand
|
|
8572
|
+
* @returns Dimension
|
|
8573
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8574
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8575
|
+
*/
|
|
8576
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.Dimension;
|
|
8577
|
+
|
|
8578
|
+
/**
|
|
8579
|
+
* Decodes a Dimension message from the specified reader or buffer, length delimited.
|
|
8580
|
+
* @param reader Reader or buffer to decode from
|
|
8581
|
+
* @returns Dimension
|
|
8582
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8583
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8584
|
+
*/
|
|
8585
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.Dimension;
|
|
8586
|
+
|
|
8587
|
+
/**
|
|
8588
|
+
* Verifies a Dimension message.
|
|
8589
|
+
* @param message Plain object to verify
|
|
8590
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8591
|
+
*/
|
|
8592
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8593
|
+
|
|
8594
|
+
/**
|
|
8595
|
+
* Creates a Dimension message from a plain object. Also converts values to their respective internal types.
|
|
8596
|
+
* @param object Plain object
|
|
8597
|
+
* @returns Dimension
|
|
8598
|
+
*/
|
|
8599
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.Dimension;
|
|
8600
|
+
|
|
8601
|
+
/**
|
|
8602
|
+
* Creates a plain object from a Dimension message. Also converts values to other types if specified.
|
|
8603
|
+
* @param message Dimension
|
|
8604
|
+
* @param [options] Conversion options
|
|
8605
|
+
* @returns Plain object
|
|
8606
|
+
*/
|
|
8607
|
+
public static toObject(message: google.analytics.data.v1alpha.Dimension, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8608
|
+
|
|
8609
|
+
/**
|
|
8610
|
+
* Converts this Dimension to JSON.
|
|
8611
|
+
* @returns JSON object
|
|
8612
|
+
*/
|
|
8613
|
+
public toJSON(): { [k: string]: any };
|
|
8614
|
+
|
|
8615
|
+
/**
|
|
8616
|
+
* Gets the default type url for Dimension
|
|
8617
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8618
|
+
* @returns The default type url
|
|
8619
|
+
*/
|
|
8620
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8621
|
+
}
|
|
8622
|
+
|
|
8623
|
+
/** Properties of a DimensionExpression. */
|
|
8624
|
+
interface IDimensionExpression {
|
|
8625
|
+
|
|
8626
|
+
/** DimensionExpression lowerCase */
|
|
8627
|
+
lowerCase?: (google.analytics.data.v1alpha.DimensionExpression.ICaseExpression|null);
|
|
8628
|
+
|
|
8629
|
+
/** DimensionExpression upperCase */
|
|
8630
|
+
upperCase?: (google.analytics.data.v1alpha.DimensionExpression.ICaseExpression|null);
|
|
8631
|
+
|
|
8632
|
+
/** DimensionExpression concatenate */
|
|
8633
|
+
concatenate?: (google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression|null);
|
|
8634
|
+
}
|
|
8635
|
+
|
|
8636
|
+
/** Represents a DimensionExpression. */
|
|
8637
|
+
class DimensionExpression implements IDimensionExpression {
|
|
8638
|
+
|
|
8639
|
+
/**
|
|
8640
|
+
* Constructs a new DimensionExpression.
|
|
8641
|
+
* @param [properties] Properties to set
|
|
8642
|
+
*/
|
|
8643
|
+
constructor(properties?: google.analytics.data.v1alpha.IDimensionExpression);
|
|
8644
|
+
|
|
8645
|
+
/** DimensionExpression lowerCase. */
|
|
8646
|
+
public lowerCase?: (google.analytics.data.v1alpha.DimensionExpression.ICaseExpression|null);
|
|
8647
|
+
|
|
8648
|
+
/** DimensionExpression upperCase. */
|
|
8649
|
+
public upperCase?: (google.analytics.data.v1alpha.DimensionExpression.ICaseExpression|null);
|
|
8650
|
+
|
|
8651
|
+
/** DimensionExpression concatenate. */
|
|
8652
|
+
public concatenate?: (google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression|null);
|
|
8653
|
+
|
|
8654
|
+
/** DimensionExpression oneExpression. */
|
|
8655
|
+
public oneExpression?: ("lowerCase"|"upperCase"|"concatenate");
|
|
8656
|
+
|
|
8657
|
+
/**
|
|
8658
|
+
* Creates a new DimensionExpression instance using the specified properties.
|
|
8659
|
+
* @param [properties] Properties to set
|
|
8660
|
+
* @returns DimensionExpression instance
|
|
8661
|
+
*/
|
|
8662
|
+
public static create(properties?: google.analytics.data.v1alpha.IDimensionExpression): google.analytics.data.v1alpha.DimensionExpression;
|
|
8663
|
+
|
|
8664
|
+
/**
|
|
8665
|
+
* Encodes the specified DimensionExpression message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.verify|verify} messages.
|
|
8666
|
+
* @param message DimensionExpression message or plain object to encode
|
|
8667
|
+
* @param [writer] Writer to encode to
|
|
8668
|
+
* @returns Writer
|
|
8669
|
+
*/
|
|
8670
|
+
public static encode(message: google.analytics.data.v1alpha.IDimensionExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8671
|
+
|
|
8672
|
+
/**
|
|
8673
|
+
* Encodes the specified DimensionExpression message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.verify|verify} messages.
|
|
8674
|
+
* @param message DimensionExpression message or plain object to encode
|
|
8675
|
+
* @param [writer] Writer to encode to
|
|
8676
|
+
* @returns Writer
|
|
8677
|
+
*/
|
|
8678
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IDimensionExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8679
|
+
|
|
8680
|
+
/**
|
|
8681
|
+
* Decodes a DimensionExpression message from the specified reader or buffer.
|
|
8682
|
+
* @param reader Reader or buffer to decode from
|
|
8683
|
+
* @param [length] Message length if known beforehand
|
|
8684
|
+
* @returns DimensionExpression
|
|
8685
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8686
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8687
|
+
*/
|
|
8688
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.DimensionExpression;
|
|
8689
|
+
|
|
8690
|
+
/**
|
|
8691
|
+
* Decodes a DimensionExpression message from the specified reader or buffer, length delimited.
|
|
8692
|
+
* @param reader Reader or buffer to decode from
|
|
8693
|
+
* @returns DimensionExpression
|
|
8694
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8695
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8696
|
+
*/
|
|
8697
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.DimensionExpression;
|
|
8698
|
+
|
|
8699
|
+
/**
|
|
8700
|
+
* Verifies a DimensionExpression message.
|
|
8701
|
+
* @param message Plain object to verify
|
|
8702
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8703
|
+
*/
|
|
8704
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8705
|
+
|
|
8706
|
+
/**
|
|
8707
|
+
* Creates a DimensionExpression message from a plain object. Also converts values to their respective internal types.
|
|
8708
|
+
* @param object Plain object
|
|
8709
|
+
* @returns DimensionExpression
|
|
8710
|
+
*/
|
|
8711
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.DimensionExpression;
|
|
8712
|
+
|
|
8713
|
+
/**
|
|
8714
|
+
* Creates a plain object from a DimensionExpression message. Also converts values to other types if specified.
|
|
8715
|
+
* @param message DimensionExpression
|
|
8716
|
+
* @param [options] Conversion options
|
|
8717
|
+
* @returns Plain object
|
|
8718
|
+
*/
|
|
8719
|
+
public static toObject(message: google.analytics.data.v1alpha.DimensionExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8720
|
+
|
|
8721
|
+
/**
|
|
8722
|
+
* Converts this DimensionExpression to JSON.
|
|
8723
|
+
* @returns JSON object
|
|
8724
|
+
*/
|
|
8725
|
+
public toJSON(): { [k: string]: any };
|
|
8726
|
+
|
|
8727
|
+
/**
|
|
8728
|
+
* Gets the default type url for DimensionExpression
|
|
8729
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8730
|
+
* @returns The default type url
|
|
8731
|
+
*/
|
|
8732
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8733
|
+
}
|
|
8734
|
+
|
|
8735
|
+
namespace DimensionExpression {
|
|
8736
|
+
|
|
8737
|
+
/** Properties of a CaseExpression. */
|
|
8738
|
+
interface ICaseExpression {
|
|
8739
|
+
|
|
8740
|
+
/** CaseExpression dimensionName */
|
|
8741
|
+
dimensionName?: (string|null);
|
|
8742
|
+
}
|
|
8743
|
+
|
|
8744
|
+
/** Represents a CaseExpression. */
|
|
8745
|
+
class CaseExpression implements ICaseExpression {
|
|
8746
|
+
|
|
8747
|
+
/**
|
|
8748
|
+
* Constructs a new CaseExpression.
|
|
8749
|
+
* @param [properties] Properties to set
|
|
8750
|
+
*/
|
|
8751
|
+
constructor(properties?: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression);
|
|
8752
|
+
|
|
8753
|
+
/** CaseExpression dimensionName. */
|
|
8754
|
+
public dimensionName: string;
|
|
8755
|
+
|
|
8756
|
+
/**
|
|
8757
|
+
* Creates a new CaseExpression instance using the specified properties.
|
|
8758
|
+
* @param [properties] Properties to set
|
|
8759
|
+
* @returns CaseExpression instance
|
|
8760
|
+
*/
|
|
8761
|
+
public static create(properties?: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression): google.analytics.data.v1alpha.DimensionExpression.CaseExpression;
|
|
8762
|
+
|
|
8763
|
+
/**
|
|
8764
|
+
* Encodes the specified CaseExpression message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.CaseExpression.verify|verify} messages.
|
|
8765
|
+
* @param message CaseExpression message or plain object to encode
|
|
8766
|
+
* @param [writer] Writer to encode to
|
|
8767
|
+
* @returns Writer
|
|
8768
|
+
*/
|
|
8769
|
+
public static encode(message: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8770
|
+
|
|
8771
|
+
/**
|
|
8772
|
+
* Encodes the specified CaseExpression message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.CaseExpression.verify|verify} messages.
|
|
8773
|
+
* @param message CaseExpression message or plain object to encode
|
|
8774
|
+
* @param [writer] Writer to encode to
|
|
8775
|
+
* @returns Writer
|
|
8776
|
+
*/
|
|
8777
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.DimensionExpression.ICaseExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8778
|
+
|
|
8779
|
+
/**
|
|
8780
|
+
* Decodes a CaseExpression message from the specified reader or buffer.
|
|
8781
|
+
* @param reader Reader or buffer to decode from
|
|
8782
|
+
* @param [length] Message length if known beforehand
|
|
8783
|
+
* @returns CaseExpression
|
|
8784
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8785
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8786
|
+
*/
|
|
8787
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.DimensionExpression.CaseExpression;
|
|
8788
|
+
|
|
8789
|
+
/**
|
|
8790
|
+
* Decodes a CaseExpression message from the specified reader or buffer, length delimited.
|
|
8791
|
+
* @param reader Reader or buffer to decode from
|
|
8792
|
+
* @returns CaseExpression
|
|
8793
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8794
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8795
|
+
*/
|
|
8796
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.DimensionExpression.CaseExpression;
|
|
8797
|
+
|
|
8798
|
+
/**
|
|
8799
|
+
* Verifies a CaseExpression message.
|
|
8800
|
+
* @param message Plain object to verify
|
|
8801
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8802
|
+
*/
|
|
8803
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8804
|
+
|
|
8805
|
+
/**
|
|
8806
|
+
* Creates a CaseExpression message from a plain object. Also converts values to their respective internal types.
|
|
8807
|
+
* @param object Plain object
|
|
8808
|
+
* @returns CaseExpression
|
|
8809
|
+
*/
|
|
8810
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.DimensionExpression.CaseExpression;
|
|
8811
|
+
|
|
8812
|
+
/**
|
|
8813
|
+
* Creates a plain object from a CaseExpression message. Also converts values to other types if specified.
|
|
8814
|
+
* @param message CaseExpression
|
|
8815
|
+
* @param [options] Conversion options
|
|
8816
|
+
* @returns Plain object
|
|
8817
|
+
*/
|
|
8818
|
+
public static toObject(message: google.analytics.data.v1alpha.DimensionExpression.CaseExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8819
|
+
|
|
8820
|
+
/**
|
|
8821
|
+
* Converts this CaseExpression to JSON.
|
|
8822
|
+
* @returns JSON object
|
|
8823
|
+
*/
|
|
8824
|
+
public toJSON(): { [k: string]: any };
|
|
8825
|
+
|
|
8826
|
+
/**
|
|
8827
|
+
* Gets the default type url for CaseExpression
|
|
8828
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8829
|
+
* @returns The default type url
|
|
8830
|
+
*/
|
|
8831
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8832
|
+
}
|
|
8833
|
+
|
|
8834
|
+
/** Properties of a ConcatenateExpression. */
|
|
8835
|
+
interface IConcatenateExpression {
|
|
8836
|
+
|
|
8837
|
+
/** ConcatenateExpression dimensionNames */
|
|
8838
|
+
dimensionNames?: (string[]|null);
|
|
8839
|
+
|
|
8840
|
+
/** ConcatenateExpression delimiter */
|
|
8841
|
+
delimiter?: (string|null);
|
|
8842
|
+
}
|
|
8843
|
+
|
|
8844
|
+
/** Represents a ConcatenateExpression. */
|
|
8845
|
+
class ConcatenateExpression implements IConcatenateExpression {
|
|
8846
|
+
|
|
8847
|
+
/**
|
|
8848
|
+
* Constructs a new ConcatenateExpression.
|
|
8849
|
+
* @param [properties] Properties to set
|
|
8850
|
+
*/
|
|
8851
|
+
constructor(properties?: google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression);
|
|
8852
|
+
|
|
8853
|
+
/** ConcatenateExpression dimensionNames. */
|
|
8854
|
+
public dimensionNames: string[];
|
|
8855
|
+
|
|
8856
|
+
/** ConcatenateExpression delimiter. */
|
|
8857
|
+
public delimiter: string;
|
|
8858
|
+
|
|
8859
|
+
/**
|
|
8860
|
+
* Creates a new ConcatenateExpression instance using the specified properties.
|
|
8861
|
+
* @param [properties] Properties to set
|
|
8862
|
+
* @returns ConcatenateExpression instance
|
|
8863
|
+
*/
|
|
8864
|
+
public static create(properties?: google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression): google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression;
|
|
8865
|
+
|
|
8866
|
+
/**
|
|
8867
|
+
* Encodes the specified ConcatenateExpression message. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression.verify|verify} messages.
|
|
8868
|
+
* @param message ConcatenateExpression message or plain object to encode
|
|
8869
|
+
* @param [writer] Writer to encode to
|
|
8870
|
+
* @returns Writer
|
|
8871
|
+
*/
|
|
8872
|
+
public static encode(message: google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8873
|
+
|
|
8874
|
+
/**
|
|
8875
|
+
* Encodes the specified ConcatenateExpression message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression.verify|verify} messages.
|
|
8876
|
+
* @param message ConcatenateExpression message or plain object to encode
|
|
8877
|
+
* @param [writer] Writer to encode to
|
|
8878
|
+
* @returns Writer
|
|
8879
|
+
*/
|
|
8880
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.DimensionExpression.IConcatenateExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8881
|
+
|
|
8882
|
+
/**
|
|
8883
|
+
* Decodes a ConcatenateExpression message from the specified reader or buffer.
|
|
8884
|
+
* @param reader Reader or buffer to decode from
|
|
8885
|
+
* @param [length] Message length if known beforehand
|
|
8886
|
+
* @returns ConcatenateExpression
|
|
8887
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8888
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8889
|
+
*/
|
|
8890
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression;
|
|
8891
|
+
|
|
8892
|
+
/**
|
|
8893
|
+
* Decodes a ConcatenateExpression message from the specified reader or buffer, length delimited.
|
|
8894
|
+
* @param reader Reader or buffer to decode from
|
|
8895
|
+
* @returns ConcatenateExpression
|
|
8896
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8897
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8898
|
+
*/
|
|
8899
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression;
|
|
8900
|
+
|
|
8901
|
+
/**
|
|
8902
|
+
* Verifies a ConcatenateExpression message.
|
|
8903
|
+
* @param message Plain object to verify
|
|
8904
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
8905
|
+
*/
|
|
8906
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
8907
|
+
|
|
8908
|
+
/**
|
|
8909
|
+
* Creates a ConcatenateExpression message from a plain object. Also converts values to their respective internal types.
|
|
8910
|
+
* @param object Plain object
|
|
8911
|
+
* @returns ConcatenateExpression
|
|
8912
|
+
*/
|
|
8913
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression;
|
|
8914
|
+
|
|
8915
|
+
/**
|
|
8916
|
+
* Creates a plain object from a ConcatenateExpression message. Also converts values to other types if specified.
|
|
8917
|
+
* @param message ConcatenateExpression
|
|
8918
|
+
* @param [options] Conversion options
|
|
8919
|
+
* @returns Plain object
|
|
8920
|
+
*/
|
|
8921
|
+
public static toObject(message: google.analytics.data.v1alpha.DimensionExpression.ConcatenateExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8922
|
+
|
|
8923
|
+
/**
|
|
8924
|
+
* Converts this ConcatenateExpression to JSON.
|
|
8925
|
+
* @returns JSON object
|
|
8926
|
+
*/
|
|
8927
|
+
public toJSON(): { [k: string]: any };
|
|
8928
|
+
|
|
8929
|
+
/**
|
|
8930
|
+
* Gets the default type url for ConcatenateExpression
|
|
8931
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8932
|
+
* @returns The default type url
|
|
8933
|
+
*/
|
|
8934
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8935
|
+
}
|
|
8936
|
+
}
|
|
8937
|
+
|
|
8938
|
+
/** Properties of a Metric. */
|
|
8939
|
+
interface IMetric {
|
|
8940
|
+
|
|
8941
|
+
/** Metric name */
|
|
8942
|
+
name?: (string|null);
|
|
8943
|
+
|
|
8944
|
+
/** Metric expression */
|
|
8945
|
+
expression?: (string|null);
|
|
8946
|
+
|
|
8947
|
+
/** Metric invisible */
|
|
8948
|
+
invisible?: (boolean|null);
|
|
8949
|
+
}
|
|
8950
|
+
|
|
8951
|
+
/** Represents a Metric. */
|
|
8952
|
+
class Metric implements IMetric {
|
|
8953
|
+
|
|
8954
|
+
/**
|
|
8955
|
+
* Constructs a new Metric.
|
|
8956
|
+
* @param [properties] Properties to set
|
|
8957
|
+
*/
|
|
8958
|
+
constructor(properties?: google.analytics.data.v1alpha.IMetric);
|
|
8959
|
+
|
|
8960
|
+
/** Metric name. */
|
|
8961
|
+
public name: string;
|
|
8962
|
+
|
|
8963
|
+
/** Metric expression. */
|
|
8964
|
+
public expression: string;
|
|
8965
|
+
|
|
8966
|
+
/** Metric invisible. */
|
|
8967
|
+
public invisible: boolean;
|
|
8968
|
+
|
|
8969
|
+
/**
|
|
8970
|
+
* Creates a new Metric instance using the specified properties.
|
|
8971
|
+
* @param [properties] Properties to set
|
|
8972
|
+
* @returns Metric instance
|
|
8973
|
+
*/
|
|
8974
|
+
public static create(properties?: google.analytics.data.v1alpha.IMetric): google.analytics.data.v1alpha.Metric;
|
|
8975
|
+
|
|
8976
|
+
/**
|
|
8977
|
+
* Encodes the specified Metric message. Does not implicitly {@link google.analytics.data.v1alpha.Metric.verify|verify} messages.
|
|
8978
|
+
* @param message Metric message or plain object to encode
|
|
8979
|
+
* @param [writer] Writer to encode to
|
|
8980
|
+
* @returns Writer
|
|
8981
|
+
*/
|
|
8982
|
+
public static encode(message: google.analytics.data.v1alpha.IMetric, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8983
|
+
|
|
8984
|
+
/**
|
|
8985
|
+
* Encodes the specified Metric message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.Metric.verify|verify} messages.
|
|
8986
|
+
* @param message Metric message or plain object to encode
|
|
8987
|
+
* @param [writer] Writer to encode to
|
|
8988
|
+
* @returns Writer
|
|
8989
|
+
*/
|
|
8990
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IMetric, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8991
|
+
|
|
8992
|
+
/**
|
|
8993
|
+
* Decodes a Metric message from the specified reader or buffer.
|
|
8994
|
+
* @param reader Reader or buffer to decode from
|
|
8995
|
+
* @param [length] Message length if known beforehand
|
|
8996
|
+
* @returns Metric
|
|
8997
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8998
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8999
|
+
*/
|
|
9000
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.Metric;
|
|
9001
|
+
|
|
9002
|
+
/**
|
|
9003
|
+
* Decodes a Metric message from the specified reader or buffer, length delimited.
|
|
9004
|
+
* @param reader Reader or buffer to decode from
|
|
9005
|
+
* @returns Metric
|
|
9006
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9007
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9008
|
+
*/
|
|
9009
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.Metric;
|
|
9010
|
+
|
|
9011
|
+
/**
|
|
9012
|
+
* Verifies a Metric message.
|
|
9013
|
+
* @param message Plain object to verify
|
|
9014
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9015
|
+
*/
|
|
9016
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9017
|
+
|
|
9018
|
+
/**
|
|
9019
|
+
* Creates a Metric message from a plain object. Also converts values to their respective internal types.
|
|
9020
|
+
* @param object Plain object
|
|
9021
|
+
* @returns Metric
|
|
9022
|
+
*/
|
|
9023
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.Metric;
|
|
9024
|
+
|
|
9025
|
+
/**
|
|
9026
|
+
* Creates a plain object from a Metric message. Also converts values to other types if specified.
|
|
9027
|
+
* @param message Metric
|
|
9028
|
+
* @param [options] Conversion options
|
|
9029
|
+
* @returns Plain object
|
|
9030
|
+
*/
|
|
9031
|
+
public static toObject(message: google.analytics.data.v1alpha.Metric, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9032
|
+
|
|
9033
|
+
/**
|
|
9034
|
+
* Converts this Metric to JSON.
|
|
9035
|
+
* @returns JSON object
|
|
9036
|
+
*/
|
|
9037
|
+
public toJSON(): { [k: string]: any };
|
|
9038
|
+
|
|
9039
|
+
/**
|
|
9040
|
+
* Gets the default type url for Metric
|
|
9041
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9042
|
+
* @returns The default type url
|
|
9043
|
+
*/
|
|
9044
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9045
|
+
}
|
|
9046
|
+
|
|
9047
|
+
/** Properties of a FilterExpression. */
|
|
9048
|
+
interface IFilterExpression {
|
|
9049
|
+
|
|
9050
|
+
/** FilterExpression andGroup */
|
|
9051
|
+
andGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
9052
|
+
|
|
9053
|
+
/** FilterExpression orGroup */
|
|
9054
|
+
orGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
9055
|
+
|
|
9056
|
+
/** FilterExpression notExpression */
|
|
9057
|
+
notExpression?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
9058
|
+
|
|
9059
|
+
/** FilterExpression filter */
|
|
9060
|
+
filter?: (google.analytics.data.v1alpha.IFilter|null);
|
|
9061
|
+
}
|
|
9062
|
+
|
|
9063
|
+
/** Represents a FilterExpression. */
|
|
9064
|
+
class FilterExpression implements IFilterExpression {
|
|
9065
|
+
|
|
9066
|
+
/**
|
|
9067
|
+
* Constructs a new FilterExpression.
|
|
9068
|
+
* @param [properties] Properties to set
|
|
9069
|
+
*/
|
|
9070
|
+
constructor(properties?: google.analytics.data.v1alpha.IFilterExpression);
|
|
9071
|
+
|
|
9072
|
+
/** FilterExpression andGroup. */
|
|
9073
|
+
public andGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
9074
|
+
|
|
9075
|
+
/** FilterExpression orGroup. */
|
|
9076
|
+
public orGroup?: (google.analytics.data.v1alpha.IFilterExpressionList|null);
|
|
9077
|
+
|
|
9078
|
+
/** FilterExpression notExpression. */
|
|
9079
|
+
public notExpression?: (google.analytics.data.v1alpha.IFilterExpression|null);
|
|
9080
|
+
|
|
9081
|
+
/** FilterExpression filter. */
|
|
9082
|
+
public filter?: (google.analytics.data.v1alpha.IFilter|null);
|
|
9083
|
+
|
|
9084
|
+
/** FilterExpression expr. */
|
|
9085
|
+
public expr?: ("andGroup"|"orGroup"|"notExpression"|"filter");
|
|
9086
|
+
|
|
9087
|
+
/**
|
|
9088
|
+
* Creates a new FilterExpression instance using the specified properties.
|
|
9089
|
+
* @param [properties] Properties to set
|
|
9090
|
+
* @returns FilterExpression instance
|
|
9091
|
+
*/
|
|
9092
|
+
public static create(properties?: google.analytics.data.v1alpha.IFilterExpression): google.analytics.data.v1alpha.FilterExpression;
|
|
9093
|
+
|
|
9094
|
+
/**
|
|
9095
|
+
* Encodes the specified FilterExpression message. Does not implicitly {@link google.analytics.data.v1alpha.FilterExpression.verify|verify} messages.
|
|
9096
|
+
* @param message FilterExpression message or plain object to encode
|
|
9097
|
+
* @param [writer] Writer to encode to
|
|
9098
|
+
* @returns Writer
|
|
9099
|
+
*/
|
|
9100
|
+
public static encode(message: google.analytics.data.v1alpha.IFilterExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9101
|
+
|
|
9102
|
+
/**
|
|
9103
|
+
* Encodes the specified FilterExpression message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.FilterExpression.verify|verify} messages.
|
|
9104
|
+
* @param message FilterExpression message or plain object to encode
|
|
9105
|
+
* @param [writer] Writer to encode to
|
|
9106
|
+
* @returns Writer
|
|
9107
|
+
*/
|
|
9108
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IFilterExpression, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9109
|
+
|
|
9110
|
+
/**
|
|
9111
|
+
* Decodes a FilterExpression message from the specified reader or buffer.
|
|
9112
|
+
* @param reader Reader or buffer to decode from
|
|
9113
|
+
* @param [length] Message length if known beforehand
|
|
9114
|
+
* @returns FilterExpression
|
|
9115
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9116
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9117
|
+
*/
|
|
9118
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.FilterExpression;
|
|
9119
|
+
|
|
9120
|
+
/**
|
|
9121
|
+
* Decodes a FilterExpression message from the specified reader or buffer, length delimited.
|
|
9122
|
+
* @param reader Reader or buffer to decode from
|
|
9123
|
+
* @returns FilterExpression
|
|
9124
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9125
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9126
|
+
*/
|
|
9127
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.FilterExpression;
|
|
9128
|
+
|
|
9129
|
+
/**
|
|
9130
|
+
* Verifies a FilterExpression message.
|
|
9131
|
+
* @param message Plain object to verify
|
|
9132
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9133
|
+
*/
|
|
9134
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9135
|
+
|
|
9136
|
+
/**
|
|
9137
|
+
* Creates a FilterExpression message from a plain object. Also converts values to their respective internal types.
|
|
9138
|
+
* @param object Plain object
|
|
9139
|
+
* @returns FilterExpression
|
|
9140
|
+
*/
|
|
9141
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.FilterExpression;
|
|
9142
|
+
|
|
9143
|
+
/**
|
|
9144
|
+
* Creates a plain object from a FilterExpression message. Also converts values to other types if specified.
|
|
9145
|
+
* @param message FilterExpression
|
|
9146
|
+
* @param [options] Conversion options
|
|
9147
|
+
* @returns Plain object
|
|
9148
|
+
*/
|
|
9149
|
+
public static toObject(message: google.analytics.data.v1alpha.FilterExpression, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9150
|
+
|
|
9151
|
+
/**
|
|
9152
|
+
* Converts this FilterExpression to JSON.
|
|
9153
|
+
* @returns JSON object
|
|
9154
|
+
*/
|
|
9155
|
+
public toJSON(): { [k: string]: any };
|
|
9156
|
+
|
|
9157
|
+
/**
|
|
9158
|
+
* Gets the default type url for FilterExpression
|
|
9159
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9160
|
+
* @returns The default type url
|
|
9161
|
+
*/
|
|
9162
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9163
|
+
}
|
|
9164
|
+
|
|
9165
|
+
/** Properties of a FilterExpressionList. */
|
|
9166
|
+
interface IFilterExpressionList {
|
|
9167
|
+
|
|
9168
|
+
/** FilterExpressionList expressions */
|
|
9169
|
+
expressions?: (google.analytics.data.v1alpha.IFilterExpression[]|null);
|
|
9170
|
+
}
|
|
9171
|
+
|
|
9172
|
+
/** Represents a FilterExpressionList. */
|
|
9173
|
+
class FilterExpressionList implements IFilterExpressionList {
|
|
9174
|
+
|
|
9175
|
+
/**
|
|
9176
|
+
* Constructs a new FilterExpressionList.
|
|
9177
|
+
* @param [properties] Properties to set
|
|
9178
|
+
*/
|
|
9179
|
+
constructor(properties?: google.analytics.data.v1alpha.IFilterExpressionList);
|
|
9180
|
+
|
|
9181
|
+
/** FilterExpressionList expressions. */
|
|
9182
|
+
public expressions: google.analytics.data.v1alpha.IFilterExpression[];
|
|
9183
|
+
|
|
9184
|
+
/**
|
|
9185
|
+
* Creates a new FilterExpressionList instance using the specified properties.
|
|
9186
|
+
* @param [properties] Properties to set
|
|
9187
|
+
* @returns FilterExpressionList instance
|
|
9188
|
+
*/
|
|
9189
|
+
public static create(properties?: google.analytics.data.v1alpha.IFilterExpressionList): google.analytics.data.v1alpha.FilterExpressionList;
|
|
9190
|
+
|
|
9191
|
+
/**
|
|
9192
|
+
* Encodes the specified FilterExpressionList message. Does not implicitly {@link google.analytics.data.v1alpha.FilterExpressionList.verify|verify} messages.
|
|
9193
|
+
* @param message FilterExpressionList message or plain object to encode
|
|
9194
|
+
* @param [writer] Writer to encode to
|
|
9195
|
+
* @returns Writer
|
|
9196
|
+
*/
|
|
9197
|
+
public static encode(message: google.analytics.data.v1alpha.IFilterExpressionList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9198
|
+
|
|
9199
|
+
/**
|
|
9200
|
+
* Encodes the specified FilterExpressionList message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.FilterExpressionList.verify|verify} messages.
|
|
9201
|
+
* @param message FilterExpressionList message or plain object to encode
|
|
9202
|
+
* @param [writer] Writer to encode to
|
|
9203
|
+
* @returns Writer
|
|
9204
|
+
*/
|
|
9205
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IFilterExpressionList, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9206
|
+
|
|
9207
|
+
/**
|
|
9208
|
+
* Decodes a FilterExpressionList message from the specified reader or buffer.
|
|
9209
|
+
* @param reader Reader or buffer to decode from
|
|
9210
|
+
* @param [length] Message length if known beforehand
|
|
9211
|
+
* @returns FilterExpressionList
|
|
9212
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9213
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9214
|
+
*/
|
|
9215
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.FilterExpressionList;
|
|
9216
|
+
|
|
9217
|
+
/**
|
|
9218
|
+
* Decodes a FilterExpressionList message from the specified reader or buffer, length delimited.
|
|
9219
|
+
* @param reader Reader or buffer to decode from
|
|
9220
|
+
* @returns FilterExpressionList
|
|
9221
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9222
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9223
|
+
*/
|
|
9224
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.FilterExpressionList;
|
|
9225
|
+
|
|
9226
|
+
/**
|
|
9227
|
+
* Verifies a FilterExpressionList message.
|
|
9228
|
+
* @param message Plain object to verify
|
|
9229
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9230
|
+
*/
|
|
9231
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9232
|
+
|
|
9233
|
+
/**
|
|
9234
|
+
* Creates a FilterExpressionList message from a plain object. Also converts values to their respective internal types.
|
|
9235
|
+
* @param object Plain object
|
|
9236
|
+
* @returns FilterExpressionList
|
|
9237
|
+
*/
|
|
9238
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.FilterExpressionList;
|
|
9239
|
+
|
|
9240
|
+
/**
|
|
9241
|
+
* Creates a plain object from a FilterExpressionList message. Also converts values to other types if specified.
|
|
9242
|
+
* @param message FilterExpressionList
|
|
9243
|
+
* @param [options] Conversion options
|
|
9244
|
+
* @returns Plain object
|
|
9245
|
+
*/
|
|
9246
|
+
public static toObject(message: google.analytics.data.v1alpha.FilterExpressionList, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9247
|
+
|
|
9248
|
+
/**
|
|
9249
|
+
* Converts this FilterExpressionList to JSON.
|
|
9250
|
+
* @returns JSON object
|
|
9251
|
+
*/
|
|
9252
|
+
public toJSON(): { [k: string]: any };
|
|
9253
|
+
|
|
9254
|
+
/**
|
|
9255
|
+
* Gets the default type url for FilterExpressionList
|
|
9256
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9257
|
+
* @returns The default type url
|
|
9258
|
+
*/
|
|
9259
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9260
|
+
}
|
|
9261
|
+
|
|
9262
|
+
/** Properties of a Filter. */
|
|
9263
|
+
interface IFilter {
|
|
9264
|
+
|
|
9265
|
+
/** Filter fieldName */
|
|
9266
|
+
fieldName?: (string|null);
|
|
9267
|
+
|
|
9268
|
+
/** Filter stringFilter */
|
|
9269
|
+
stringFilter?: (google.analytics.data.v1alpha.IStringFilter|null);
|
|
9270
|
+
|
|
9271
|
+
/** Filter inListFilter */
|
|
9272
|
+
inListFilter?: (google.analytics.data.v1alpha.IInListFilter|null);
|
|
9273
|
+
|
|
9274
|
+
/** Filter numericFilter */
|
|
9275
|
+
numericFilter?: (google.analytics.data.v1alpha.INumericFilter|null);
|
|
9276
|
+
|
|
9277
|
+
/** Filter betweenFilter */
|
|
9278
|
+
betweenFilter?: (google.analytics.data.v1alpha.IBetweenFilter|null);
|
|
9279
|
+
}
|
|
9280
|
+
|
|
9281
|
+
/** Represents a Filter. */
|
|
9282
|
+
class Filter implements IFilter {
|
|
9283
|
+
|
|
9284
|
+
/**
|
|
9285
|
+
* Constructs a new Filter.
|
|
9286
|
+
* @param [properties] Properties to set
|
|
9287
|
+
*/
|
|
9288
|
+
constructor(properties?: google.analytics.data.v1alpha.IFilter);
|
|
9289
|
+
|
|
9290
|
+
/** Filter fieldName. */
|
|
9291
|
+
public fieldName: string;
|
|
9292
|
+
|
|
9293
|
+
/** Filter stringFilter. */
|
|
9294
|
+
public stringFilter?: (google.analytics.data.v1alpha.IStringFilter|null);
|
|
9295
|
+
|
|
9296
|
+
/** Filter inListFilter. */
|
|
9297
|
+
public inListFilter?: (google.analytics.data.v1alpha.IInListFilter|null);
|
|
9298
|
+
|
|
9299
|
+
/** Filter numericFilter. */
|
|
9300
|
+
public numericFilter?: (google.analytics.data.v1alpha.INumericFilter|null);
|
|
9301
|
+
|
|
9302
|
+
/** Filter betweenFilter. */
|
|
9303
|
+
public betweenFilter?: (google.analytics.data.v1alpha.IBetweenFilter|null);
|
|
9304
|
+
|
|
9305
|
+
/** Filter oneFilter. */
|
|
9306
|
+
public oneFilter?: ("stringFilter"|"inListFilter"|"numericFilter"|"betweenFilter");
|
|
9307
|
+
|
|
9308
|
+
/**
|
|
9309
|
+
* Creates a new Filter instance using the specified properties.
|
|
9310
|
+
* @param [properties] Properties to set
|
|
9311
|
+
* @returns Filter instance
|
|
9312
|
+
*/
|
|
9313
|
+
public static create(properties?: google.analytics.data.v1alpha.IFilter): google.analytics.data.v1alpha.Filter;
|
|
9314
|
+
|
|
9315
|
+
/**
|
|
9316
|
+
* Encodes the specified Filter message. Does not implicitly {@link google.analytics.data.v1alpha.Filter.verify|verify} messages.
|
|
9317
|
+
* @param message Filter message or plain object to encode
|
|
9318
|
+
* @param [writer] Writer to encode to
|
|
9319
|
+
* @returns Writer
|
|
9320
|
+
*/
|
|
9321
|
+
public static encode(message: google.analytics.data.v1alpha.IFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9322
|
+
|
|
9323
|
+
/**
|
|
9324
|
+
* Encodes the specified Filter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.Filter.verify|verify} messages.
|
|
9325
|
+
* @param message Filter message or plain object to encode
|
|
9326
|
+
* @param [writer] Writer to encode to
|
|
9327
|
+
* @returns Writer
|
|
9328
|
+
*/
|
|
9329
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9330
|
+
|
|
9331
|
+
/**
|
|
9332
|
+
* Decodes a Filter message from the specified reader or buffer.
|
|
9333
|
+
* @param reader Reader or buffer to decode from
|
|
9334
|
+
* @param [length] Message length if known beforehand
|
|
9335
|
+
* @returns Filter
|
|
9336
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9337
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9338
|
+
*/
|
|
9339
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.Filter;
|
|
9340
|
+
|
|
9341
|
+
/**
|
|
9342
|
+
* Decodes a Filter message from the specified reader or buffer, length delimited.
|
|
9343
|
+
* @param reader Reader or buffer to decode from
|
|
9344
|
+
* @returns Filter
|
|
9345
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9346
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9347
|
+
*/
|
|
9348
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.Filter;
|
|
9349
|
+
|
|
9350
|
+
/**
|
|
9351
|
+
* Verifies a Filter message.
|
|
9352
|
+
* @param message Plain object to verify
|
|
9353
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9354
|
+
*/
|
|
9355
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9356
|
+
|
|
9357
|
+
/**
|
|
9358
|
+
* Creates a Filter message from a plain object. Also converts values to their respective internal types.
|
|
9359
|
+
* @param object Plain object
|
|
9360
|
+
* @returns Filter
|
|
9361
|
+
*/
|
|
9362
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.Filter;
|
|
9363
|
+
|
|
9364
|
+
/**
|
|
9365
|
+
* Creates a plain object from a Filter message. Also converts values to other types if specified.
|
|
9366
|
+
* @param message Filter
|
|
9367
|
+
* @param [options] Conversion options
|
|
9368
|
+
* @returns Plain object
|
|
9369
|
+
*/
|
|
9370
|
+
public static toObject(message: google.analytics.data.v1alpha.Filter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9371
|
+
|
|
9372
|
+
/**
|
|
9373
|
+
* Converts this Filter to JSON.
|
|
9374
|
+
* @returns JSON object
|
|
9375
|
+
*/
|
|
9376
|
+
public toJSON(): { [k: string]: any };
|
|
9377
|
+
|
|
9378
|
+
/**
|
|
9379
|
+
* Gets the default type url for Filter
|
|
9380
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9381
|
+
* @returns The default type url
|
|
9382
|
+
*/
|
|
9383
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9384
|
+
}
|
|
9385
|
+
|
|
9386
|
+
/** Properties of a StringFilter. */
|
|
9387
|
+
interface IStringFilter {
|
|
9388
|
+
|
|
9389
|
+
/** StringFilter matchType */
|
|
9390
|
+
matchType?: (google.analytics.data.v1alpha.StringFilter.MatchType|keyof typeof google.analytics.data.v1alpha.StringFilter.MatchType|null);
|
|
9391
|
+
|
|
9392
|
+
/** StringFilter value */
|
|
9393
|
+
value?: (string|null);
|
|
9394
|
+
|
|
9395
|
+
/** StringFilter caseSensitive */
|
|
9396
|
+
caseSensitive?: (boolean|null);
|
|
9397
|
+
}
|
|
9398
|
+
|
|
9399
|
+
/** Represents a StringFilter. */
|
|
9400
|
+
class StringFilter implements IStringFilter {
|
|
9401
|
+
|
|
9402
|
+
/**
|
|
9403
|
+
* Constructs a new StringFilter.
|
|
9404
|
+
* @param [properties] Properties to set
|
|
9405
|
+
*/
|
|
9406
|
+
constructor(properties?: google.analytics.data.v1alpha.IStringFilter);
|
|
9407
|
+
|
|
9408
|
+
/** StringFilter matchType. */
|
|
9409
|
+
public matchType: (google.analytics.data.v1alpha.StringFilter.MatchType|keyof typeof google.analytics.data.v1alpha.StringFilter.MatchType);
|
|
9410
|
+
|
|
9411
|
+
/** StringFilter value. */
|
|
9412
|
+
public value: string;
|
|
9413
|
+
|
|
9414
|
+
/** StringFilter caseSensitive. */
|
|
9415
|
+
public caseSensitive: boolean;
|
|
9416
|
+
|
|
9417
|
+
/**
|
|
9418
|
+
* Creates a new StringFilter instance using the specified properties.
|
|
9419
|
+
* @param [properties] Properties to set
|
|
9420
|
+
* @returns StringFilter instance
|
|
9421
|
+
*/
|
|
9422
|
+
public static create(properties?: google.analytics.data.v1alpha.IStringFilter): google.analytics.data.v1alpha.StringFilter;
|
|
9423
|
+
|
|
9424
|
+
/**
|
|
9425
|
+
* Encodes the specified StringFilter message. Does not implicitly {@link google.analytics.data.v1alpha.StringFilter.verify|verify} messages.
|
|
9426
|
+
* @param message StringFilter message or plain object to encode
|
|
9427
|
+
* @param [writer] Writer to encode to
|
|
9428
|
+
* @returns Writer
|
|
9429
|
+
*/
|
|
9430
|
+
public static encode(message: google.analytics.data.v1alpha.IStringFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9431
|
+
|
|
9432
|
+
/**
|
|
9433
|
+
* Encodes the specified StringFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.StringFilter.verify|verify} messages.
|
|
9434
|
+
* @param message StringFilter message or plain object to encode
|
|
9435
|
+
* @param [writer] Writer to encode to
|
|
9436
|
+
* @returns Writer
|
|
9437
|
+
*/
|
|
9438
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IStringFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9439
|
+
|
|
9440
|
+
/**
|
|
9441
|
+
* Decodes a StringFilter message from the specified reader or buffer.
|
|
9442
|
+
* @param reader Reader or buffer to decode from
|
|
9443
|
+
* @param [length] Message length if known beforehand
|
|
9444
|
+
* @returns StringFilter
|
|
9445
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9446
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9447
|
+
*/
|
|
9448
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.StringFilter;
|
|
9449
|
+
|
|
9450
|
+
/**
|
|
9451
|
+
* Decodes a StringFilter message from the specified reader or buffer, length delimited.
|
|
9452
|
+
* @param reader Reader or buffer to decode from
|
|
9453
|
+
* @returns StringFilter
|
|
9454
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9455
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9456
|
+
*/
|
|
9457
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.StringFilter;
|
|
9458
|
+
|
|
9459
|
+
/**
|
|
9460
|
+
* Verifies a StringFilter message.
|
|
9461
|
+
* @param message Plain object to verify
|
|
9462
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9463
|
+
*/
|
|
9464
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9465
|
+
|
|
9466
|
+
/**
|
|
9467
|
+
* Creates a StringFilter message from a plain object. Also converts values to their respective internal types.
|
|
9468
|
+
* @param object Plain object
|
|
9469
|
+
* @returns StringFilter
|
|
9470
|
+
*/
|
|
9471
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.StringFilter;
|
|
9472
|
+
|
|
9473
|
+
/**
|
|
9474
|
+
* Creates a plain object from a StringFilter message. Also converts values to other types if specified.
|
|
9475
|
+
* @param message StringFilter
|
|
9476
|
+
* @param [options] Conversion options
|
|
9477
|
+
* @returns Plain object
|
|
9478
|
+
*/
|
|
9479
|
+
public static toObject(message: google.analytics.data.v1alpha.StringFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9480
|
+
|
|
9481
|
+
/**
|
|
9482
|
+
* Converts this StringFilter to JSON.
|
|
9483
|
+
* @returns JSON object
|
|
9484
|
+
*/
|
|
9485
|
+
public toJSON(): { [k: string]: any };
|
|
9486
|
+
|
|
9487
|
+
/**
|
|
9488
|
+
* Gets the default type url for StringFilter
|
|
9489
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9490
|
+
* @returns The default type url
|
|
9491
|
+
*/
|
|
9492
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9493
|
+
}
|
|
9494
|
+
|
|
9495
|
+
namespace StringFilter {
|
|
9496
|
+
|
|
9497
|
+
/** MatchType enum. */
|
|
9498
|
+
enum MatchType {
|
|
9499
|
+
MATCH_TYPE_UNSPECIFIED = 0,
|
|
9500
|
+
EXACT = 1,
|
|
9501
|
+
BEGINS_WITH = 2,
|
|
9502
|
+
ENDS_WITH = 3,
|
|
9503
|
+
CONTAINS = 4,
|
|
9504
|
+
FULL_REGEXP = 5,
|
|
9505
|
+
PARTIAL_REGEXP = 6
|
|
9506
|
+
}
|
|
9507
|
+
}
|
|
9508
|
+
|
|
9509
|
+
/** Properties of an InListFilter. */
|
|
9510
|
+
interface IInListFilter {
|
|
9511
|
+
|
|
9512
|
+
/** InListFilter values */
|
|
9513
|
+
values?: (string[]|null);
|
|
9514
|
+
|
|
9515
|
+
/** InListFilter caseSensitive */
|
|
9516
|
+
caseSensitive?: (boolean|null);
|
|
9517
|
+
}
|
|
9518
|
+
|
|
9519
|
+
/** Represents an InListFilter. */
|
|
9520
|
+
class InListFilter implements IInListFilter {
|
|
9521
|
+
|
|
9522
|
+
/**
|
|
9523
|
+
* Constructs a new InListFilter.
|
|
9524
|
+
* @param [properties] Properties to set
|
|
9525
|
+
*/
|
|
9526
|
+
constructor(properties?: google.analytics.data.v1alpha.IInListFilter);
|
|
9527
|
+
|
|
9528
|
+
/** InListFilter values. */
|
|
9529
|
+
public values: string[];
|
|
9530
|
+
|
|
9531
|
+
/** InListFilter caseSensitive. */
|
|
9532
|
+
public caseSensitive: boolean;
|
|
9533
|
+
|
|
9534
|
+
/**
|
|
9535
|
+
* Creates a new InListFilter instance using the specified properties.
|
|
9536
|
+
* @param [properties] Properties to set
|
|
9537
|
+
* @returns InListFilter instance
|
|
9538
|
+
*/
|
|
9539
|
+
public static create(properties?: google.analytics.data.v1alpha.IInListFilter): google.analytics.data.v1alpha.InListFilter;
|
|
9540
|
+
|
|
9541
|
+
/**
|
|
9542
|
+
* Encodes the specified InListFilter message. Does not implicitly {@link google.analytics.data.v1alpha.InListFilter.verify|verify} messages.
|
|
9543
|
+
* @param message InListFilter message or plain object to encode
|
|
9544
|
+
* @param [writer] Writer to encode to
|
|
9545
|
+
* @returns Writer
|
|
9546
|
+
*/
|
|
9547
|
+
public static encode(message: google.analytics.data.v1alpha.IInListFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9548
|
+
|
|
9549
|
+
/**
|
|
9550
|
+
* Encodes the specified InListFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.InListFilter.verify|verify} messages.
|
|
9551
|
+
* @param message InListFilter message or plain object to encode
|
|
9552
|
+
* @param [writer] Writer to encode to
|
|
9553
|
+
* @returns Writer
|
|
9554
|
+
*/
|
|
9555
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IInListFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9556
|
+
|
|
9557
|
+
/**
|
|
9558
|
+
* Decodes an InListFilter message from the specified reader or buffer.
|
|
9559
|
+
* @param reader Reader or buffer to decode from
|
|
9560
|
+
* @param [length] Message length if known beforehand
|
|
9561
|
+
* @returns InListFilter
|
|
9562
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9563
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9564
|
+
*/
|
|
9565
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.InListFilter;
|
|
9566
|
+
|
|
9567
|
+
/**
|
|
9568
|
+
* Decodes an InListFilter message from the specified reader or buffer, length delimited.
|
|
9569
|
+
* @param reader Reader or buffer to decode from
|
|
9570
|
+
* @returns InListFilter
|
|
9571
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9572
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9573
|
+
*/
|
|
9574
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.InListFilter;
|
|
9575
|
+
|
|
9576
|
+
/**
|
|
9577
|
+
* Verifies an InListFilter message.
|
|
9578
|
+
* @param message Plain object to verify
|
|
9579
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9580
|
+
*/
|
|
9581
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9582
|
+
|
|
9583
|
+
/**
|
|
9584
|
+
* Creates an InListFilter message from a plain object. Also converts values to their respective internal types.
|
|
9585
|
+
* @param object Plain object
|
|
9586
|
+
* @returns InListFilter
|
|
9587
|
+
*/
|
|
9588
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.InListFilter;
|
|
9589
|
+
|
|
9590
|
+
/**
|
|
9591
|
+
* Creates a plain object from an InListFilter message. Also converts values to other types if specified.
|
|
9592
|
+
* @param message InListFilter
|
|
9593
|
+
* @param [options] Conversion options
|
|
9594
|
+
* @returns Plain object
|
|
9595
|
+
*/
|
|
9596
|
+
public static toObject(message: google.analytics.data.v1alpha.InListFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9597
|
+
|
|
9598
|
+
/**
|
|
9599
|
+
* Converts this InListFilter to JSON.
|
|
9600
|
+
* @returns JSON object
|
|
9601
|
+
*/
|
|
9602
|
+
public toJSON(): { [k: string]: any };
|
|
9603
|
+
|
|
9604
|
+
/**
|
|
9605
|
+
* Gets the default type url for InListFilter
|
|
9606
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9607
|
+
* @returns The default type url
|
|
9608
|
+
*/
|
|
9609
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9610
|
+
}
|
|
9611
|
+
|
|
9612
|
+
/** Properties of a NumericFilter. */
|
|
9613
|
+
interface INumericFilter {
|
|
9614
|
+
|
|
9615
|
+
/** NumericFilter operation */
|
|
9616
|
+
operation?: (google.analytics.data.v1alpha.NumericFilter.Operation|keyof typeof google.analytics.data.v1alpha.NumericFilter.Operation|null);
|
|
9617
|
+
|
|
9618
|
+
/** NumericFilter value */
|
|
9619
|
+
value?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
9620
|
+
}
|
|
9621
|
+
|
|
9622
|
+
/** Represents a NumericFilter. */
|
|
9623
|
+
class NumericFilter implements INumericFilter {
|
|
9624
|
+
|
|
9625
|
+
/**
|
|
9626
|
+
* Constructs a new NumericFilter.
|
|
9627
|
+
* @param [properties] Properties to set
|
|
9628
|
+
*/
|
|
9629
|
+
constructor(properties?: google.analytics.data.v1alpha.INumericFilter);
|
|
9630
|
+
|
|
9631
|
+
/** NumericFilter operation. */
|
|
9632
|
+
public operation: (google.analytics.data.v1alpha.NumericFilter.Operation|keyof typeof google.analytics.data.v1alpha.NumericFilter.Operation);
|
|
9633
|
+
|
|
9634
|
+
/** NumericFilter value. */
|
|
9635
|
+
public value?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
9636
|
+
|
|
9637
|
+
/**
|
|
9638
|
+
* Creates a new NumericFilter instance using the specified properties.
|
|
9639
|
+
* @param [properties] Properties to set
|
|
9640
|
+
* @returns NumericFilter instance
|
|
9641
|
+
*/
|
|
9642
|
+
public static create(properties?: google.analytics.data.v1alpha.INumericFilter): google.analytics.data.v1alpha.NumericFilter;
|
|
9643
|
+
|
|
9644
|
+
/**
|
|
9645
|
+
* Encodes the specified NumericFilter message. Does not implicitly {@link google.analytics.data.v1alpha.NumericFilter.verify|verify} messages.
|
|
9646
|
+
* @param message NumericFilter message or plain object to encode
|
|
9647
|
+
* @param [writer] Writer to encode to
|
|
9648
|
+
* @returns Writer
|
|
9649
|
+
*/
|
|
9650
|
+
public static encode(message: google.analytics.data.v1alpha.INumericFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9651
|
+
|
|
9652
|
+
/**
|
|
9653
|
+
* Encodes the specified NumericFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.NumericFilter.verify|verify} messages.
|
|
9654
|
+
* @param message NumericFilter message or plain object to encode
|
|
9655
|
+
* @param [writer] Writer to encode to
|
|
9656
|
+
* @returns Writer
|
|
9657
|
+
*/
|
|
9658
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.INumericFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9659
|
+
|
|
9660
|
+
/**
|
|
9661
|
+
* Decodes a NumericFilter message from the specified reader or buffer.
|
|
9662
|
+
* @param reader Reader or buffer to decode from
|
|
9663
|
+
* @param [length] Message length if known beforehand
|
|
9664
|
+
* @returns NumericFilter
|
|
9665
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9666
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9667
|
+
*/
|
|
9668
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.NumericFilter;
|
|
9669
|
+
|
|
9670
|
+
/**
|
|
9671
|
+
* Decodes a NumericFilter message from the specified reader or buffer, length delimited.
|
|
9672
|
+
* @param reader Reader or buffer to decode from
|
|
9673
|
+
* @returns NumericFilter
|
|
9674
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9675
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9676
|
+
*/
|
|
9677
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.NumericFilter;
|
|
9678
|
+
|
|
9679
|
+
/**
|
|
9680
|
+
* Verifies a NumericFilter message.
|
|
9681
|
+
* @param message Plain object to verify
|
|
9682
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9683
|
+
*/
|
|
9684
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9685
|
+
|
|
9686
|
+
/**
|
|
9687
|
+
* Creates a NumericFilter message from a plain object. Also converts values to their respective internal types.
|
|
9688
|
+
* @param object Plain object
|
|
9689
|
+
* @returns NumericFilter
|
|
9690
|
+
*/
|
|
9691
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.NumericFilter;
|
|
9692
|
+
|
|
9693
|
+
/**
|
|
9694
|
+
* Creates a plain object from a NumericFilter message. Also converts values to other types if specified.
|
|
9695
|
+
* @param message NumericFilter
|
|
9696
|
+
* @param [options] Conversion options
|
|
9697
|
+
* @returns Plain object
|
|
9698
|
+
*/
|
|
9699
|
+
public static toObject(message: google.analytics.data.v1alpha.NumericFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9700
|
+
|
|
9701
|
+
/**
|
|
9702
|
+
* Converts this NumericFilter to JSON.
|
|
9703
|
+
* @returns JSON object
|
|
9704
|
+
*/
|
|
9705
|
+
public toJSON(): { [k: string]: any };
|
|
9706
|
+
|
|
9707
|
+
/**
|
|
9708
|
+
* Gets the default type url for NumericFilter
|
|
9709
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9710
|
+
* @returns The default type url
|
|
9711
|
+
*/
|
|
9712
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9713
|
+
}
|
|
9714
|
+
|
|
9715
|
+
namespace NumericFilter {
|
|
9716
|
+
|
|
9717
|
+
/** Operation enum. */
|
|
9718
|
+
enum Operation {
|
|
9719
|
+
OPERATION_UNSPECIFIED = 0,
|
|
9720
|
+
EQUAL = 1,
|
|
9721
|
+
LESS_THAN = 2,
|
|
9722
|
+
LESS_THAN_OR_EQUAL = 3,
|
|
9723
|
+
GREATER_THAN = 4,
|
|
9724
|
+
GREATER_THAN_OR_EQUAL = 5
|
|
9725
|
+
}
|
|
9726
|
+
}
|
|
9727
|
+
|
|
9728
|
+
/** Properties of an OrderBy. */
|
|
9729
|
+
interface IOrderBy {
|
|
9730
|
+
|
|
9731
|
+
/** OrderBy metric */
|
|
9732
|
+
metric?: (google.analytics.data.v1alpha.OrderBy.IMetricOrderBy|null);
|
|
9733
|
+
|
|
9734
|
+
/** OrderBy dimension */
|
|
9735
|
+
dimension?: (google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy|null);
|
|
9736
|
+
|
|
9737
|
+
/** OrderBy desc */
|
|
9738
|
+
desc?: (boolean|null);
|
|
9739
|
+
}
|
|
9740
|
+
|
|
9741
|
+
/** Represents an OrderBy. */
|
|
9742
|
+
class OrderBy implements IOrderBy {
|
|
9743
|
+
|
|
9744
|
+
/**
|
|
9745
|
+
* Constructs a new OrderBy.
|
|
9746
|
+
* @param [properties] Properties to set
|
|
9747
|
+
*/
|
|
9748
|
+
constructor(properties?: google.analytics.data.v1alpha.IOrderBy);
|
|
9749
|
+
|
|
9750
|
+
/** OrderBy metric. */
|
|
9751
|
+
public metric?: (google.analytics.data.v1alpha.OrderBy.IMetricOrderBy|null);
|
|
9752
|
+
|
|
9753
|
+
/** OrderBy dimension. */
|
|
9754
|
+
public dimension?: (google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy|null);
|
|
9755
|
+
|
|
9756
|
+
/** OrderBy desc. */
|
|
9757
|
+
public desc: boolean;
|
|
9758
|
+
|
|
9759
|
+
/** OrderBy oneOrderBy. */
|
|
9760
|
+
public oneOrderBy?: ("metric"|"dimension");
|
|
9761
|
+
|
|
9762
|
+
/**
|
|
9763
|
+
* Creates a new OrderBy instance using the specified properties.
|
|
9764
|
+
* @param [properties] Properties to set
|
|
9765
|
+
* @returns OrderBy instance
|
|
9766
|
+
*/
|
|
9767
|
+
public static create(properties?: google.analytics.data.v1alpha.IOrderBy): google.analytics.data.v1alpha.OrderBy;
|
|
9768
|
+
|
|
9769
|
+
/**
|
|
9770
|
+
* Encodes the specified OrderBy message. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.verify|verify} messages.
|
|
9771
|
+
* @param message OrderBy message or plain object to encode
|
|
9772
|
+
* @param [writer] Writer to encode to
|
|
9773
|
+
* @returns Writer
|
|
9774
|
+
*/
|
|
9775
|
+
public static encode(message: google.analytics.data.v1alpha.IOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9776
|
+
|
|
9777
|
+
/**
|
|
9778
|
+
* Encodes the specified OrderBy message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.verify|verify} messages.
|
|
9779
|
+
* @param message OrderBy message or plain object to encode
|
|
9780
|
+
* @param [writer] Writer to encode to
|
|
9781
|
+
* @returns Writer
|
|
9782
|
+
*/
|
|
9783
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9784
|
+
|
|
9785
|
+
/**
|
|
9786
|
+
* Decodes an OrderBy message from the specified reader or buffer.
|
|
9787
|
+
* @param reader Reader or buffer to decode from
|
|
9788
|
+
* @param [length] Message length if known beforehand
|
|
9789
|
+
* @returns OrderBy
|
|
9790
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9791
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9792
|
+
*/
|
|
9793
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.OrderBy;
|
|
9794
|
+
|
|
9795
|
+
/**
|
|
9796
|
+
* Decodes an OrderBy message from the specified reader or buffer, length delimited.
|
|
9797
|
+
* @param reader Reader or buffer to decode from
|
|
9798
|
+
* @returns OrderBy
|
|
9799
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9800
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9801
|
+
*/
|
|
9802
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.OrderBy;
|
|
9803
|
+
|
|
9804
|
+
/**
|
|
9805
|
+
* Verifies an OrderBy message.
|
|
9806
|
+
* @param message Plain object to verify
|
|
9807
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9808
|
+
*/
|
|
9809
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9810
|
+
|
|
9811
|
+
/**
|
|
9812
|
+
* Creates an OrderBy message from a plain object. Also converts values to their respective internal types.
|
|
9813
|
+
* @param object Plain object
|
|
9814
|
+
* @returns OrderBy
|
|
9815
|
+
*/
|
|
9816
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.OrderBy;
|
|
9817
|
+
|
|
9818
|
+
/**
|
|
9819
|
+
* Creates a plain object from an OrderBy message. Also converts values to other types if specified.
|
|
9820
|
+
* @param message OrderBy
|
|
9821
|
+
* @param [options] Conversion options
|
|
9822
|
+
* @returns Plain object
|
|
9823
|
+
*/
|
|
9824
|
+
public static toObject(message: google.analytics.data.v1alpha.OrderBy, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9825
|
+
|
|
9826
|
+
/**
|
|
9827
|
+
* Converts this OrderBy to JSON.
|
|
9828
|
+
* @returns JSON object
|
|
9829
|
+
*/
|
|
9830
|
+
public toJSON(): { [k: string]: any };
|
|
9831
|
+
|
|
9832
|
+
/**
|
|
9833
|
+
* Gets the default type url for OrderBy
|
|
9834
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9835
|
+
* @returns The default type url
|
|
9836
|
+
*/
|
|
9837
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9838
|
+
}
|
|
9839
|
+
|
|
9840
|
+
namespace OrderBy {
|
|
9841
|
+
|
|
9842
|
+
/** Properties of a MetricOrderBy. */
|
|
9843
|
+
interface IMetricOrderBy {
|
|
9844
|
+
|
|
9845
|
+
/** MetricOrderBy metricName */
|
|
9846
|
+
metricName?: (string|null);
|
|
9847
|
+
}
|
|
9848
|
+
|
|
9849
|
+
/** Represents a MetricOrderBy. */
|
|
9850
|
+
class MetricOrderBy implements IMetricOrderBy {
|
|
9851
|
+
|
|
9852
|
+
/**
|
|
9853
|
+
* Constructs a new MetricOrderBy.
|
|
9854
|
+
* @param [properties] Properties to set
|
|
9855
|
+
*/
|
|
9856
|
+
constructor(properties?: google.analytics.data.v1alpha.OrderBy.IMetricOrderBy);
|
|
9857
|
+
|
|
9858
|
+
/** MetricOrderBy metricName. */
|
|
9859
|
+
public metricName: string;
|
|
9860
|
+
|
|
9861
|
+
/**
|
|
9862
|
+
* Creates a new MetricOrderBy instance using the specified properties.
|
|
9863
|
+
* @param [properties] Properties to set
|
|
9864
|
+
* @returns MetricOrderBy instance
|
|
9865
|
+
*/
|
|
9866
|
+
public static create(properties?: google.analytics.data.v1alpha.OrderBy.IMetricOrderBy): google.analytics.data.v1alpha.OrderBy.MetricOrderBy;
|
|
9867
|
+
|
|
9868
|
+
/**
|
|
9869
|
+
* Encodes the specified MetricOrderBy message. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.MetricOrderBy.verify|verify} messages.
|
|
9870
|
+
* @param message MetricOrderBy message or plain object to encode
|
|
9871
|
+
* @param [writer] Writer to encode to
|
|
9872
|
+
* @returns Writer
|
|
9873
|
+
*/
|
|
9874
|
+
public static encode(message: google.analytics.data.v1alpha.OrderBy.IMetricOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9875
|
+
|
|
9876
|
+
/**
|
|
9877
|
+
* Encodes the specified MetricOrderBy message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.MetricOrderBy.verify|verify} messages.
|
|
9878
|
+
* @param message MetricOrderBy message or plain object to encode
|
|
9879
|
+
* @param [writer] Writer to encode to
|
|
9880
|
+
* @returns Writer
|
|
9881
|
+
*/
|
|
9882
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.OrderBy.IMetricOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9883
|
+
|
|
9884
|
+
/**
|
|
9885
|
+
* Decodes a MetricOrderBy message from the specified reader or buffer.
|
|
9886
|
+
* @param reader Reader or buffer to decode from
|
|
9887
|
+
* @param [length] Message length if known beforehand
|
|
9888
|
+
* @returns MetricOrderBy
|
|
9889
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9890
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9891
|
+
*/
|
|
9892
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.OrderBy.MetricOrderBy;
|
|
9893
|
+
|
|
9894
|
+
/**
|
|
9895
|
+
* Decodes a MetricOrderBy message from the specified reader or buffer, length delimited.
|
|
9896
|
+
* @param reader Reader or buffer to decode from
|
|
9897
|
+
* @returns MetricOrderBy
|
|
9898
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9899
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9900
|
+
*/
|
|
9901
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.OrderBy.MetricOrderBy;
|
|
9902
|
+
|
|
9903
|
+
/**
|
|
9904
|
+
* Verifies a MetricOrderBy message.
|
|
9905
|
+
* @param message Plain object to verify
|
|
9906
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
9907
|
+
*/
|
|
9908
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
9909
|
+
|
|
9910
|
+
/**
|
|
9911
|
+
* Creates a MetricOrderBy message from a plain object. Also converts values to their respective internal types.
|
|
9912
|
+
* @param object Plain object
|
|
9913
|
+
* @returns MetricOrderBy
|
|
9914
|
+
*/
|
|
9915
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.OrderBy.MetricOrderBy;
|
|
9916
|
+
|
|
9917
|
+
/**
|
|
9918
|
+
* Creates a plain object from a MetricOrderBy message. Also converts values to other types if specified.
|
|
9919
|
+
* @param message MetricOrderBy
|
|
9920
|
+
* @param [options] Conversion options
|
|
9921
|
+
* @returns Plain object
|
|
9922
|
+
*/
|
|
9923
|
+
public static toObject(message: google.analytics.data.v1alpha.OrderBy.MetricOrderBy, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
9924
|
+
|
|
9925
|
+
/**
|
|
9926
|
+
* Converts this MetricOrderBy to JSON.
|
|
9927
|
+
* @returns JSON object
|
|
9928
|
+
*/
|
|
9929
|
+
public toJSON(): { [k: string]: any };
|
|
9930
|
+
|
|
9931
|
+
/**
|
|
9932
|
+
* Gets the default type url for MetricOrderBy
|
|
9933
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
9934
|
+
* @returns The default type url
|
|
9935
|
+
*/
|
|
9936
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
9937
|
+
}
|
|
9938
|
+
|
|
9939
|
+
/** Properties of a DimensionOrderBy. */
|
|
9940
|
+
interface IDimensionOrderBy {
|
|
9941
|
+
|
|
9942
|
+
/** DimensionOrderBy dimensionName */
|
|
9943
|
+
dimensionName?: (string|null);
|
|
9944
|
+
|
|
9945
|
+
/** DimensionOrderBy orderType */
|
|
9946
|
+
orderType?: (google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.OrderType|keyof typeof google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.OrderType|null);
|
|
9947
|
+
}
|
|
9948
|
+
|
|
9949
|
+
/** Represents a DimensionOrderBy. */
|
|
9950
|
+
class DimensionOrderBy implements IDimensionOrderBy {
|
|
9951
|
+
|
|
9952
|
+
/**
|
|
9953
|
+
* Constructs a new DimensionOrderBy.
|
|
9954
|
+
* @param [properties] Properties to set
|
|
9955
|
+
*/
|
|
9956
|
+
constructor(properties?: google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy);
|
|
9957
|
+
|
|
9958
|
+
/** DimensionOrderBy dimensionName. */
|
|
9959
|
+
public dimensionName: string;
|
|
9960
|
+
|
|
9961
|
+
/** DimensionOrderBy orderType. */
|
|
9962
|
+
public orderType: (google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.OrderType|keyof typeof google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.OrderType);
|
|
9963
|
+
|
|
9964
|
+
/**
|
|
9965
|
+
* Creates a new DimensionOrderBy instance using the specified properties.
|
|
9966
|
+
* @param [properties] Properties to set
|
|
9967
|
+
* @returns DimensionOrderBy instance
|
|
9968
|
+
*/
|
|
9969
|
+
public static create(properties?: google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy): google.analytics.data.v1alpha.OrderBy.DimensionOrderBy;
|
|
9970
|
+
|
|
9971
|
+
/**
|
|
9972
|
+
* Encodes the specified DimensionOrderBy message. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.verify|verify} messages.
|
|
9973
|
+
* @param message DimensionOrderBy message or plain object to encode
|
|
9974
|
+
* @param [writer] Writer to encode to
|
|
9975
|
+
* @returns Writer
|
|
9976
|
+
*/
|
|
9977
|
+
public static encode(message: google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9978
|
+
|
|
9979
|
+
/**
|
|
9980
|
+
* Encodes the specified DimensionOrderBy message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.OrderBy.DimensionOrderBy.verify|verify} messages.
|
|
9981
|
+
* @param message DimensionOrderBy message or plain object to encode
|
|
9982
|
+
* @param [writer] Writer to encode to
|
|
9983
|
+
* @returns Writer
|
|
9984
|
+
*/
|
|
9985
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.OrderBy.IDimensionOrderBy, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
9986
|
+
|
|
9987
|
+
/**
|
|
9988
|
+
* Decodes a DimensionOrderBy message from the specified reader or buffer.
|
|
9989
|
+
* @param reader Reader or buffer to decode from
|
|
9990
|
+
* @param [length] Message length if known beforehand
|
|
9991
|
+
* @returns DimensionOrderBy
|
|
9992
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
9993
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
9994
|
+
*/
|
|
9995
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.OrderBy.DimensionOrderBy;
|
|
9996
|
+
|
|
9997
|
+
/**
|
|
9998
|
+
* Decodes a DimensionOrderBy message from the specified reader or buffer, length delimited.
|
|
9999
|
+
* @param reader Reader or buffer to decode from
|
|
10000
|
+
* @returns DimensionOrderBy
|
|
10001
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10002
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10003
|
+
*/
|
|
10004
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.OrderBy.DimensionOrderBy;
|
|
10005
|
+
|
|
10006
|
+
/**
|
|
10007
|
+
* Verifies a DimensionOrderBy message.
|
|
10008
|
+
* @param message Plain object to verify
|
|
10009
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10010
|
+
*/
|
|
10011
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10012
|
+
|
|
10013
|
+
/**
|
|
10014
|
+
* Creates a DimensionOrderBy message from a plain object. Also converts values to their respective internal types.
|
|
10015
|
+
* @param object Plain object
|
|
10016
|
+
* @returns DimensionOrderBy
|
|
10017
|
+
*/
|
|
10018
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.OrderBy.DimensionOrderBy;
|
|
10019
|
+
|
|
10020
|
+
/**
|
|
10021
|
+
* Creates a plain object from a DimensionOrderBy message. Also converts values to other types if specified.
|
|
10022
|
+
* @param message DimensionOrderBy
|
|
10023
|
+
* @param [options] Conversion options
|
|
10024
|
+
* @returns Plain object
|
|
10025
|
+
*/
|
|
10026
|
+
public static toObject(message: google.analytics.data.v1alpha.OrderBy.DimensionOrderBy, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10027
|
+
|
|
10028
|
+
/**
|
|
10029
|
+
* Converts this DimensionOrderBy to JSON.
|
|
10030
|
+
* @returns JSON object
|
|
10031
|
+
*/
|
|
10032
|
+
public toJSON(): { [k: string]: any };
|
|
10033
|
+
|
|
10034
|
+
/**
|
|
10035
|
+
* Gets the default type url for DimensionOrderBy
|
|
10036
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10037
|
+
* @returns The default type url
|
|
10038
|
+
*/
|
|
10039
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10040
|
+
}
|
|
10041
|
+
|
|
10042
|
+
namespace DimensionOrderBy {
|
|
10043
|
+
|
|
10044
|
+
/** OrderType enum. */
|
|
10045
|
+
enum OrderType {
|
|
10046
|
+
ORDER_TYPE_UNSPECIFIED = 0,
|
|
10047
|
+
ALPHANUMERIC = 1,
|
|
10048
|
+
CASE_INSENSITIVE_ALPHANUMERIC = 2,
|
|
10049
|
+
NUMERIC = 3
|
|
10050
|
+
}
|
|
10051
|
+
}
|
|
10052
|
+
}
|
|
10053
|
+
|
|
10054
|
+
/** Properties of a BetweenFilter. */
|
|
10055
|
+
interface IBetweenFilter {
|
|
10056
|
+
|
|
10057
|
+
/** BetweenFilter fromValue */
|
|
10058
|
+
fromValue?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
10059
|
+
|
|
10060
|
+
/** BetweenFilter toValue */
|
|
10061
|
+
toValue?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
10062
|
+
}
|
|
10063
|
+
|
|
10064
|
+
/** Represents a BetweenFilter. */
|
|
10065
|
+
class BetweenFilter implements IBetweenFilter {
|
|
10066
|
+
|
|
10067
|
+
/**
|
|
10068
|
+
* Constructs a new BetweenFilter.
|
|
10069
|
+
* @param [properties] Properties to set
|
|
10070
|
+
*/
|
|
10071
|
+
constructor(properties?: google.analytics.data.v1alpha.IBetweenFilter);
|
|
10072
|
+
|
|
10073
|
+
/** BetweenFilter fromValue. */
|
|
10074
|
+
public fromValue?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
10075
|
+
|
|
10076
|
+
/** BetweenFilter toValue. */
|
|
10077
|
+
public toValue?: (google.analytics.data.v1alpha.INumericValue|null);
|
|
10078
|
+
|
|
10079
|
+
/**
|
|
10080
|
+
* Creates a new BetweenFilter instance using the specified properties.
|
|
10081
|
+
* @param [properties] Properties to set
|
|
10082
|
+
* @returns BetweenFilter instance
|
|
10083
|
+
*/
|
|
10084
|
+
public static create(properties?: google.analytics.data.v1alpha.IBetweenFilter): google.analytics.data.v1alpha.BetweenFilter;
|
|
10085
|
+
|
|
10086
|
+
/**
|
|
10087
|
+
* Encodes the specified BetweenFilter message. Does not implicitly {@link google.analytics.data.v1alpha.BetweenFilter.verify|verify} messages.
|
|
10088
|
+
* @param message BetweenFilter message or plain object to encode
|
|
10089
|
+
* @param [writer] Writer to encode to
|
|
10090
|
+
* @returns Writer
|
|
10091
|
+
*/
|
|
10092
|
+
public static encode(message: google.analytics.data.v1alpha.IBetweenFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10093
|
+
|
|
10094
|
+
/**
|
|
10095
|
+
* Encodes the specified BetweenFilter message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.BetweenFilter.verify|verify} messages.
|
|
10096
|
+
* @param message BetweenFilter message or plain object to encode
|
|
10097
|
+
* @param [writer] Writer to encode to
|
|
10098
|
+
* @returns Writer
|
|
10099
|
+
*/
|
|
10100
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IBetweenFilter, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10101
|
+
|
|
10102
|
+
/**
|
|
10103
|
+
* Decodes a BetweenFilter message from the specified reader or buffer.
|
|
10104
|
+
* @param reader Reader or buffer to decode from
|
|
10105
|
+
* @param [length] Message length if known beforehand
|
|
10106
|
+
* @returns BetweenFilter
|
|
10107
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10108
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10109
|
+
*/
|
|
10110
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.BetweenFilter;
|
|
10111
|
+
|
|
10112
|
+
/**
|
|
10113
|
+
* Decodes a BetweenFilter message from the specified reader or buffer, length delimited.
|
|
10114
|
+
* @param reader Reader or buffer to decode from
|
|
10115
|
+
* @returns BetweenFilter
|
|
10116
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10117
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10118
|
+
*/
|
|
10119
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.BetweenFilter;
|
|
10120
|
+
|
|
10121
|
+
/**
|
|
10122
|
+
* Verifies a BetweenFilter message.
|
|
10123
|
+
* @param message Plain object to verify
|
|
10124
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10125
|
+
*/
|
|
10126
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10127
|
+
|
|
10128
|
+
/**
|
|
10129
|
+
* Creates a BetweenFilter message from a plain object. Also converts values to their respective internal types.
|
|
10130
|
+
* @param object Plain object
|
|
10131
|
+
* @returns BetweenFilter
|
|
10132
|
+
*/
|
|
10133
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.BetweenFilter;
|
|
10134
|
+
|
|
10135
|
+
/**
|
|
10136
|
+
* Creates a plain object from a BetweenFilter message. Also converts values to other types if specified.
|
|
8436
10137
|
* @param message BetweenFilter
|
|
8437
10138
|
* @param [options] Conversion options
|
|
8438
10139
|
* @returns Plain object
|
|
8439
10140
|
*/
|
|
8440
|
-
public static toObject(message: google.analytics.data.v1alpha.BetweenFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10141
|
+
public static toObject(message: google.analytics.data.v1alpha.BetweenFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10142
|
+
|
|
10143
|
+
/**
|
|
10144
|
+
* Converts this BetweenFilter to JSON.
|
|
10145
|
+
* @returns JSON object
|
|
10146
|
+
*/
|
|
10147
|
+
public toJSON(): { [k: string]: any };
|
|
10148
|
+
|
|
10149
|
+
/**
|
|
10150
|
+
* Gets the default type url for BetweenFilter
|
|
10151
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10152
|
+
* @returns The default type url
|
|
10153
|
+
*/
|
|
10154
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10155
|
+
}
|
|
10156
|
+
|
|
10157
|
+
/** Properties of a NumericValue. */
|
|
10158
|
+
interface INumericValue {
|
|
10159
|
+
|
|
10160
|
+
/** NumericValue int64Value */
|
|
10161
|
+
int64Value?: (number|Long|string|null);
|
|
10162
|
+
|
|
10163
|
+
/** NumericValue doubleValue */
|
|
10164
|
+
doubleValue?: (number|null);
|
|
10165
|
+
}
|
|
10166
|
+
|
|
10167
|
+
/** Represents a NumericValue. */
|
|
10168
|
+
class NumericValue implements INumericValue {
|
|
10169
|
+
|
|
10170
|
+
/**
|
|
10171
|
+
* Constructs a new NumericValue.
|
|
10172
|
+
* @param [properties] Properties to set
|
|
10173
|
+
*/
|
|
10174
|
+
constructor(properties?: google.analytics.data.v1alpha.INumericValue);
|
|
10175
|
+
|
|
10176
|
+
/** NumericValue int64Value. */
|
|
10177
|
+
public int64Value?: (number|Long|string|null);
|
|
10178
|
+
|
|
10179
|
+
/** NumericValue doubleValue. */
|
|
10180
|
+
public doubleValue?: (number|null);
|
|
10181
|
+
|
|
10182
|
+
/** NumericValue oneValue. */
|
|
10183
|
+
public oneValue?: ("int64Value"|"doubleValue");
|
|
10184
|
+
|
|
10185
|
+
/**
|
|
10186
|
+
* Creates a new NumericValue instance using the specified properties.
|
|
10187
|
+
* @param [properties] Properties to set
|
|
10188
|
+
* @returns NumericValue instance
|
|
10189
|
+
*/
|
|
10190
|
+
public static create(properties?: google.analytics.data.v1alpha.INumericValue): google.analytics.data.v1alpha.NumericValue;
|
|
10191
|
+
|
|
10192
|
+
/**
|
|
10193
|
+
* Encodes the specified NumericValue message. Does not implicitly {@link google.analytics.data.v1alpha.NumericValue.verify|verify} messages.
|
|
10194
|
+
* @param message NumericValue message or plain object to encode
|
|
10195
|
+
* @param [writer] Writer to encode to
|
|
10196
|
+
* @returns Writer
|
|
10197
|
+
*/
|
|
10198
|
+
public static encode(message: google.analytics.data.v1alpha.INumericValue, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10199
|
+
|
|
10200
|
+
/**
|
|
10201
|
+
* Encodes the specified NumericValue message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.NumericValue.verify|verify} messages.
|
|
10202
|
+
* @param message NumericValue message or plain object to encode
|
|
10203
|
+
* @param [writer] Writer to encode to
|
|
10204
|
+
* @returns Writer
|
|
10205
|
+
*/
|
|
10206
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.INumericValue, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10207
|
+
|
|
10208
|
+
/**
|
|
10209
|
+
* Decodes a NumericValue message from the specified reader or buffer.
|
|
10210
|
+
* @param reader Reader or buffer to decode from
|
|
10211
|
+
* @param [length] Message length if known beforehand
|
|
10212
|
+
* @returns NumericValue
|
|
10213
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10214
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10215
|
+
*/
|
|
10216
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.NumericValue;
|
|
10217
|
+
|
|
10218
|
+
/**
|
|
10219
|
+
* Decodes a NumericValue message from the specified reader or buffer, length delimited.
|
|
10220
|
+
* @param reader Reader or buffer to decode from
|
|
10221
|
+
* @returns NumericValue
|
|
10222
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10223
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10224
|
+
*/
|
|
10225
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.NumericValue;
|
|
10226
|
+
|
|
10227
|
+
/**
|
|
10228
|
+
* Verifies a NumericValue message.
|
|
10229
|
+
* @param message Plain object to verify
|
|
10230
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10231
|
+
*/
|
|
10232
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10233
|
+
|
|
10234
|
+
/**
|
|
10235
|
+
* Creates a NumericValue message from a plain object. Also converts values to their respective internal types.
|
|
10236
|
+
* @param object Plain object
|
|
10237
|
+
* @returns NumericValue
|
|
10238
|
+
*/
|
|
10239
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.NumericValue;
|
|
10240
|
+
|
|
10241
|
+
/**
|
|
10242
|
+
* Creates a plain object from a NumericValue message. Also converts values to other types if specified.
|
|
10243
|
+
* @param message NumericValue
|
|
10244
|
+
* @param [options] Conversion options
|
|
10245
|
+
* @returns Plain object
|
|
10246
|
+
*/
|
|
10247
|
+
public static toObject(message: google.analytics.data.v1alpha.NumericValue, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10248
|
+
|
|
10249
|
+
/**
|
|
10250
|
+
* Converts this NumericValue to JSON.
|
|
10251
|
+
* @returns JSON object
|
|
10252
|
+
*/
|
|
10253
|
+
public toJSON(): { [k: string]: any };
|
|
10254
|
+
|
|
10255
|
+
/**
|
|
10256
|
+
* Gets the default type url for NumericValue
|
|
10257
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10258
|
+
* @returns The default type url
|
|
10259
|
+
*/
|
|
10260
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10261
|
+
}
|
|
10262
|
+
|
|
10263
|
+
/** Properties of a CohortSpec. */
|
|
10264
|
+
interface ICohortSpec {
|
|
10265
|
+
|
|
10266
|
+
/** CohortSpec cohorts */
|
|
10267
|
+
cohorts?: (google.analytics.data.v1alpha.ICohort[]|null);
|
|
10268
|
+
|
|
10269
|
+
/** CohortSpec cohortsRange */
|
|
10270
|
+
cohortsRange?: (google.analytics.data.v1alpha.ICohortsRange|null);
|
|
10271
|
+
|
|
10272
|
+
/** CohortSpec cohortReportSettings */
|
|
10273
|
+
cohortReportSettings?: (google.analytics.data.v1alpha.ICohortReportSettings|null);
|
|
10274
|
+
}
|
|
10275
|
+
|
|
10276
|
+
/** Represents a CohortSpec. */
|
|
10277
|
+
class CohortSpec implements ICohortSpec {
|
|
10278
|
+
|
|
10279
|
+
/**
|
|
10280
|
+
* Constructs a new CohortSpec.
|
|
10281
|
+
* @param [properties] Properties to set
|
|
10282
|
+
*/
|
|
10283
|
+
constructor(properties?: google.analytics.data.v1alpha.ICohortSpec);
|
|
10284
|
+
|
|
10285
|
+
/** CohortSpec cohorts. */
|
|
10286
|
+
public cohorts: google.analytics.data.v1alpha.ICohort[];
|
|
10287
|
+
|
|
10288
|
+
/** CohortSpec cohortsRange. */
|
|
10289
|
+
public cohortsRange?: (google.analytics.data.v1alpha.ICohortsRange|null);
|
|
10290
|
+
|
|
10291
|
+
/** CohortSpec cohortReportSettings. */
|
|
10292
|
+
public cohortReportSettings?: (google.analytics.data.v1alpha.ICohortReportSettings|null);
|
|
10293
|
+
|
|
10294
|
+
/**
|
|
10295
|
+
* Creates a new CohortSpec instance using the specified properties.
|
|
10296
|
+
* @param [properties] Properties to set
|
|
10297
|
+
* @returns CohortSpec instance
|
|
10298
|
+
*/
|
|
10299
|
+
public static create(properties?: google.analytics.data.v1alpha.ICohortSpec): google.analytics.data.v1alpha.CohortSpec;
|
|
10300
|
+
|
|
10301
|
+
/**
|
|
10302
|
+
* Encodes the specified CohortSpec message. Does not implicitly {@link google.analytics.data.v1alpha.CohortSpec.verify|verify} messages.
|
|
10303
|
+
* @param message CohortSpec message or plain object to encode
|
|
10304
|
+
* @param [writer] Writer to encode to
|
|
10305
|
+
* @returns Writer
|
|
10306
|
+
*/
|
|
10307
|
+
public static encode(message: google.analytics.data.v1alpha.ICohortSpec, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10308
|
+
|
|
10309
|
+
/**
|
|
10310
|
+
* Encodes the specified CohortSpec message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.CohortSpec.verify|verify} messages.
|
|
10311
|
+
* @param message CohortSpec message or plain object to encode
|
|
10312
|
+
* @param [writer] Writer to encode to
|
|
10313
|
+
* @returns Writer
|
|
10314
|
+
*/
|
|
10315
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICohortSpec, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10316
|
+
|
|
10317
|
+
/**
|
|
10318
|
+
* Decodes a CohortSpec message from the specified reader or buffer.
|
|
10319
|
+
* @param reader Reader or buffer to decode from
|
|
10320
|
+
* @param [length] Message length if known beforehand
|
|
10321
|
+
* @returns CohortSpec
|
|
10322
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10323
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10324
|
+
*/
|
|
10325
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.CohortSpec;
|
|
10326
|
+
|
|
10327
|
+
/**
|
|
10328
|
+
* Decodes a CohortSpec message from the specified reader or buffer, length delimited.
|
|
10329
|
+
* @param reader Reader or buffer to decode from
|
|
10330
|
+
* @returns CohortSpec
|
|
10331
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10332
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10333
|
+
*/
|
|
10334
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.CohortSpec;
|
|
10335
|
+
|
|
10336
|
+
/**
|
|
10337
|
+
* Verifies a CohortSpec message.
|
|
10338
|
+
* @param message Plain object to verify
|
|
10339
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10340
|
+
*/
|
|
10341
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10342
|
+
|
|
10343
|
+
/**
|
|
10344
|
+
* Creates a CohortSpec message from a plain object. Also converts values to their respective internal types.
|
|
10345
|
+
* @param object Plain object
|
|
10346
|
+
* @returns CohortSpec
|
|
10347
|
+
*/
|
|
10348
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.CohortSpec;
|
|
10349
|
+
|
|
10350
|
+
/**
|
|
10351
|
+
* Creates a plain object from a CohortSpec message. Also converts values to other types if specified.
|
|
10352
|
+
* @param message CohortSpec
|
|
10353
|
+
* @param [options] Conversion options
|
|
10354
|
+
* @returns Plain object
|
|
10355
|
+
*/
|
|
10356
|
+
public static toObject(message: google.analytics.data.v1alpha.CohortSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10357
|
+
|
|
10358
|
+
/**
|
|
10359
|
+
* Converts this CohortSpec to JSON.
|
|
10360
|
+
* @returns JSON object
|
|
10361
|
+
*/
|
|
10362
|
+
public toJSON(): { [k: string]: any };
|
|
10363
|
+
|
|
10364
|
+
/**
|
|
10365
|
+
* Gets the default type url for CohortSpec
|
|
10366
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10367
|
+
* @returns The default type url
|
|
10368
|
+
*/
|
|
10369
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10370
|
+
}
|
|
10371
|
+
|
|
10372
|
+
/** Properties of a Cohort. */
|
|
10373
|
+
interface ICohort {
|
|
10374
|
+
|
|
10375
|
+
/** Cohort name */
|
|
10376
|
+
name?: (string|null);
|
|
10377
|
+
|
|
10378
|
+
/** Cohort dimension */
|
|
10379
|
+
dimension?: (string|null);
|
|
10380
|
+
|
|
10381
|
+
/** Cohort dateRange */
|
|
10382
|
+
dateRange?: (google.analytics.data.v1alpha.IDateRange|null);
|
|
10383
|
+
}
|
|
10384
|
+
|
|
10385
|
+
/** Represents a Cohort. */
|
|
10386
|
+
class Cohort implements ICohort {
|
|
10387
|
+
|
|
10388
|
+
/**
|
|
10389
|
+
* Constructs a new Cohort.
|
|
10390
|
+
* @param [properties] Properties to set
|
|
10391
|
+
*/
|
|
10392
|
+
constructor(properties?: google.analytics.data.v1alpha.ICohort);
|
|
10393
|
+
|
|
10394
|
+
/** Cohort name. */
|
|
10395
|
+
public name: string;
|
|
10396
|
+
|
|
10397
|
+
/** Cohort dimension. */
|
|
10398
|
+
public dimension: string;
|
|
10399
|
+
|
|
10400
|
+
/** Cohort dateRange. */
|
|
10401
|
+
public dateRange?: (google.analytics.data.v1alpha.IDateRange|null);
|
|
10402
|
+
|
|
10403
|
+
/**
|
|
10404
|
+
* Creates a new Cohort instance using the specified properties.
|
|
10405
|
+
* @param [properties] Properties to set
|
|
10406
|
+
* @returns Cohort instance
|
|
10407
|
+
*/
|
|
10408
|
+
public static create(properties?: google.analytics.data.v1alpha.ICohort): google.analytics.data.v1alpha.Cohort;
|
|
10409
|
+
|
|
10410
|
+
/**
|
|
10411
|
+
* Encodes the specified Cohort message. Does not implicitly {@link google.analytics.data.v1alpha.Cohort.verify|verify} messages.
|
|
10412
|
+
* @param message Cohort message or plain object to encode
|
|
10413
|
+
* @param [writer] Writer to encode to
|
|
10414
|
+
* @returns Writer
|
|
10415
|
+
*/
|
|
10416
|
+
public static encode(message: google.analytics.data.v1alpha.ICohort, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10417
|
+
|
|
10418
|
+
/**
|
|
10419
|
+
* Encodes the specified Cohort message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.Cohort.verify|verify} messages.
|
|
10420
|
+
* @param message Cohort message or plain object to encode
|
|
10421
|
+
* @param [writer] Writer to encode to
|
|
10422
|
+
* @returns Writer
|
|
10423
|
+
*/
|
|
10424
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICohort, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10425
|
+
|
|
10426
|
+
/**
|
|
10427
|
+
* Decodes a Cohort message from the specified reader or buffer.
|
|
10428
|
+
* @param reader Reader or buffer to decode from
|
|
10429
|
+
* @param [length] Message length if known beforehand
|
|
10430
|
+
* @returns Cohort
|
|
10431
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10432
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10433
|
+
*/
|
|
10434
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.Cohort;
|
|
10435
|
+
|
|
10436
|
+
/**
|
|
10437
|
+
* Decodes a Cohort message from the specified reader or buffer, length delimited.
|
|
10438
|
+
* @param reader Reader or buffer to decode from
|
|
10439
|
+
* @returns Cohort
|
|
10440
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10441
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10442
|
+
*/
|
|
10443
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.Cohort;
|
|
10444
|
+
|
|
10445
|
+
/**
|
|
10446
|
+
* Verifies a Cohort message.
|
|
10447
|
+
* @param message Plain object to verify
|
|
10448
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10449
|
+
*/
|
|
10450
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10451
|
+
|
|
10452
|
+
/**
|
|
10453
|
+
* Creates a Cohort message from a plain object. Also converts values to their respective internal types.
|
|
10454
|
+
* @param object Plain object
|
|
10455
|
+
* @returns Cohort
|
|
10456
|
+
*/
|
|
10457
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.Cohort;
|
|
10458
|
+
|
|
10459
|
+
/**
|
|
10460
|
+
* Creates a plain object from a Cohort message. Also converts values to other types if specified.
|
|
10461
|
+
* @param message Cohort
|
|
10462
|
+
* @param [options] Conversion options
|
|
10463
|
+
* @returns Plain object
|
|
10464
|
+
*/
|
|
10465
|
+
public static toObject(message: google.analytics.data.v1alpha.Cohort, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8441
10466
|
|
|
8442
10467
|
/**
|
|
8443
|
-
* Converts this
|
|
10468
|
+
* Converts this Cohort to JSON.
|
|
8444
10469
|
* @returns JSON object
|
|
8445
10470
|
*/
|
|
8446
10471
|
public toJSON(): { [k: string]: any };
|
|
8447
10472
|
|
|
8448
10473
|
/**
|
|
8449
|
-
* Gets the default type url for
|
|
10474
|
+
* Gets the default type url for Cohort
|
|
8450
10475
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8451
10476
|
* @returns The default type url
|
|
8452
10477
|
*/
|
|
8453
10478
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8454
10479
|
}
|
|
8455
10480
|
|
|
8456
|
-
/** Properties of a
|
|
8457
|
-
interface
|
|
10481
|
+
/** Properties of a CohortsRange. */
|
|
10482
|
+
interface ICohortsRange {
|
|
8458
10483
|
|
|
8459
|
-
/**
|
|
8460
|
-
|
|
10484
|
+
/** CohortsRange granularity */
|
|
10485
|
+
granularity?: (google.analytics.data.v1alpha.CohortsRange.Granularity|keyof typeof google.analytics.data.v1alpha.CohortsRange.Granularity|null);
|
|
8461
10486
|
|
|
8462
|
-
/**
|
|
8463
|
-
|
|
10487
|
+
/** CohortsRange startOffset */
|
|
10488
|
+
startOffset?: (number|null);
|
|
10489
|
+
|
|
10490
|
+
/** CohortsRange endOffset */
|
|
10491
|
+
endOffset?: (number|null);
|
|
8464
10492
|
}
|
|
8465
10493
|
|
|
8466
|
-
/** Represents a
|
|
8467
|
-
class
|
|
10494
|
+
/** Represents a CohortsRange. */
|
|
10495
|
+
class CohortsRange implements ICohortsRange {
|
|
8468
10496
|
|
|
8469
10497
|
/**
|
|
8470
|
-
* Constructs a new
|
|
10498
|
+
* Constructs a new CohortsRange.
|
|
8471
10499
|
* @param [properties] Properties to set
|
|
8472
10500
|
*/
|
|
8473
|
-
constructor(properties?: google.analytics.data.v1alpha.
|
|
10501
|
+
constructor(properties?: google.analytics.data.v1alpha.ICohortsRange);
|
|
10502
|
+
|
|
10503
|
+
/** CohortsRange granularity. */
|
|
10504
|
+
public granularity: (google.analytics.data.v1alpha.CohortsRange.Granularity|keyof typeof google.analytics.data.v1alpha.CohortsRange.Granularity);
|
|
10505
|
+
|
|
10506
|
+
/** CohortsRange startOffset. */
|
|
10507
|
+
public startOffset: number;
|
|
10508
|
+
|
|
10509
|
+
/** CohortsRange endOffset. */
|
|
10510
|
+
public endOffset: number;
|
|
10511
|
+
|
|
10512
|
+
/**
|
|
10513
|
+
* Creates a new CohortsRange instance using the specified properties.
|
|
10514
|
+
* @param [properties] Properties to set
|
|
10515
|
+
* @returns CohortsRange instance
|
|
10516
|
+
*/
|
|
10517
|
+
public static create(properties?: google.analytics.data.v1alpha.ICohortsRange): google.analytics.data.v1alpha.CohortsRange;
|
|
10518
|
+
|
|
10519
|
+
/**
|
|
10520
|
+
* Encodes the specified CohortsRange message. Does not implicitly {@link google.analytics.data.v1alpha.CohortsRange.verify|verify} messages.
|
|
10521
|
+
* @param message CohortsRange message or plain object to encode
|
|
10522
|
+
* @param [writer] Writer to encode to
|
|
10523
|
+
* @returns Writer
|
|
10524
|
+
*/
|
|
10525
|
+
public static encode(message: google.analytics.data.v1alpha.ICohortsRange, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10526
|
+
|
|
10527
|
+
/**
|
|
10528
|
+
* Encodes the specified CohortsRange message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.CohortsRange.verify|verify} messages.
|
|
10529
|
+
* @param message CohortsRange message or plain object to encode
|
|
10530
|
+
* @param [writer] Writer to encode to
|
|
10531
|
+
* @returns Writer
|
|
10532
|
+
*/
|
|
10533
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICohortsRange, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10534
|
+
|
|
10535
|
+
/**
|
|
10536
|
+
* Decodes a CohortsRange message from the specified reader or buffer.
|
|
10537
|
+
* @param reader Reader or buffer to decode from
|
|
10538
|
+
* @param [length] Message length if known beforehand
|
|
10539
|
+
* @returns CohortsRange
|
|
10540
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10541
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10542
|
+
*/
|
|
10543
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.CohortsRange;
|
|
10544
|
+
|
|
10545
|
+
/**
|
|
10546
|
+
* Decodes a CohortsRange message from the specified reader or buffer, length delimited.
|
|
10547
|
+
* @param reader Reader or buffer to decode from
|
|
10548
|
+
* @returns CohortsRange
|
|
10549
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10550
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10551
|
+
*/
|
|
10552
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.CohortsRange;
|
|
10553
|
+
|
|
10554
|
+
/**
|
|
10555
|
+
* Verifies a CohortsRange message.
|
|
10556
|
+
* @param message Plain object to verify
|
|
10557
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10558
|
+
*/
|
|
10559
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10560
|
+
|
|
10561
|
+
/**
|
|
10562
|
+
* Creates a CohortsRange message from a plain object. Also converts values to their respective internal types.
|
|
10563
|
+
* @param object Plain object
|
|
10564
|
+
* @returns CohortsRange
|
|
10565
|
+
*/
|
|
10566
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.CohortsRange;
|
|
10567
|
+
|
|
10568
|
+
/**
|
|
10569
|
+
* Creates a plain object from a CohortsRange message. Also converts values to other types if specified.
|
|
10570
|
+
* @param message CohortsRange
|
|
10571
|
+
* @param [options] Conversion options
|
|
10572
|
+
* @returns Plain object
|
|
10573
|
+
*/
|
|
10574
|
+
public static toObject(message: google.analytics.data.v1alpha.CohortsRange, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10575
|
+
|
|
10576
|
+
/**
|
|
10577
|
+
* Converts this CohortsRange to JSON.
|
|
10578
|
+
* @returns JSON object
|
|
10579
|
+
*/
|
|
10580
|
+
public toJSON(): { [k: string]: any };
|
|
10581
|
+
|
|
10582
|
+
/**
|
|
10583
|
+
* Gets the default type url for CohortsRange
|
|
10584
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10585
|
+
* @returns The default type url
|
|
10586
|
+
*/
|
|
10587
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10588
|
+
}
|
|
10589
|
+
|
|
10590
|
+
namespace CohortsRange {
|
|
10591
|
+
|
|
10592
|
+
/** Granularity enum. */
|
|
10593
|
+
enum Granularity {
|
|
10594
|
+
GRANULARITY_UNSPECIFIED = 0,
|
|
10595
|
+
DAILY = 1,
|
|
10596
|
+
WEEKLY = 2,
|
|
10597
|
+
MONTHLY = 3
|
|
10598
|
+
}
|
|
10599
|
+
}
|
|
10600
|
+
|
|
10601
|
+
/** Properties of a CohortReportSettings. */
|
|
10602
|
+
interface ICohortReportSettings {
|
|
10603
|
+
|
|
10604
|
+
/** CohortReportSettings accumulate */
|
|
10605
|
+
accumulate?: (boolean|null);
|
|
10606
|
+
}
|
|
10607
|
+
|
|
10608
|
+
/** Represents a CohortReportSettings. */
|
|
10609
|
+
class CohortReportSettings implements ICohortReportSettings {
|
|
10610
|
+
|
|
10611
|
+
/**
|
|
10612
|
+
* Constructs a new CohortReportSettings.
|
|
10613
|
+
* @param [properties] Properties to set
|
|
10614
|
+
*/
|
|
10615
|
+
constructor(properties?: google.analytics.data.v1alpha.ICohortReportSettings);
|
|
10616
|
+
|
|
10617
|
+
/** CohortReportSettings accumulate. */
|
|
10618
|
+
public accumulate: boolean;
|
|
10619
|
+
|
|
10620
|
+
/**
|
|
10621
|
+
* Creates a new CohortReportSettings instance using the specified properties.
|
|
10622
|
+
* @param [properties] Properties to set
|
|
10623
|
+
* @returns CohortReportSettings instance
|
|
10624
|
+
*/
|
|
10625
|
+
public static create(properties?: google.analytics.data.v1alpha.ICohortReportSettings): google.analytics.data.v1alpha.CohortReportSettings;
|
|
10626
|
+
|
|
10627
|
+
/**
|
|
10628
|
+
* Encodes the specified CohortReportSettings message. Does not implicitly {@link google.analytics.data.v1alpha.CohortReportSettings.verify|verify} messages.
|
|
10629
|
+
* @param message CohortReportSettings message or plain object to encode
|
|
10630
|
+
* @param [writer] Writer to encode to
|
|
10631
|
+
* @returns Writer
|
|
10632
|
+
*/
|
|
10633
|
+
public static encode(message: google.analytics.data.v1alpha.ICohortReportSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10634
|
+
|
|
10635
|
+
/**
|
|
10636
|
+
* Encodes the specified CohortReportSettings message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.CohortReportSettings.verify|verify} messages.
|
|
10637
|
+
* @param message CohortReportSettings message or plain object to encode
|
|
10638
|
+
* @param [writer] Writer to encode to
|
|
10639
|
+
* @returns Writer
|
|
10640
|
+
*/
|
|
10641
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ICohortReportSettings, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10642
|
+
|
|
10643
|
+
/**
|
|
10644
|
+
* Decodes a CohortReportSettings message from the specified reader or buffer.
|
|
10645
|
+
* @param reader Reader or buffer to decode from
|
|
10646
|
+
* @param [length] Message length if known beforehand
|
|
10647
|
+
* @returns CohortReportSettings
|
|
10648
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10649
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10650
|
+
*/
|
|
10651
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.CohortReportSettings;
|
|
10652
|
+
|
|
10653
|
+
/**
|
|
10654
|
+
* Decodes a CohortReportSettings message from the specified reader or buffer, length delimited.
|
|
10655
|
+
* @param reader Reader or buffer to decode from
|
|
10656
|
+
* @returns CohortReportSettings
|
|
10657
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10658
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10659
|
+
*/
|
|
10660
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.CohortReportSettings;
|
|
10661
|
+
|
|
10662
|
+
/**
|
|
10663
|
+
* Verifies a CohortReportSettings message.
|
|
10664
|
+
* @param message Plain object to verify
|
|
10665
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10666
|
+
*/
|
|
10667
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10668
|
+
|
|
10669
|
+
/**
|
|
10670
|
+
* Creates a CohortReportSettings message from a plain object. Also converts values to their respective internal types.
|
|
10671
|
+
* @param object Plain object
|
|
10672
|
+
* @returns CohortReportSettings
|
|
10673
|
+
*/
|
|
10674
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.CohortReportSettings;
|
|
10675
|
+
|
|
10676
|
+
/**
|
|
10677
|
+
* Creates a plain object from a CohortReportSettings message. Also converts values to other types if specified.
|
|
10678
|
+
* @param message CohortReportSettings
|
|
10679
|
+
* @param [options] Conversion options
|
|
10680
|
+
* @returns Plain object
|
|
10681
|
+
*/
|
|
10682
|
+
public static toObject(message: google.analytics.data.v1alpha.CohortReportSettings, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10683
|
+
|
|
10684
|
+
/**
|
|
10685
|
+
* Converts this CohortReportSettings to JSON.
|
|
10686
|
+
* @returns JSON object
|
|
10687
|
+
*/
|
|
10688
|
+
public toJSON(): { [k: string]: any };
|
|
10689
|
+
|
|
10690
|
+
/**
|
|
10691
|
+
* Gets the default type url for CohortReportSettings
|
|
10692
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10693
|
+
* @returns The default type url
|
|
10694
|
+
*/
|
|
10695
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10696
|
+
}
|
|
10697
|
+
|
|
10698
|
+
/** Properties of a ResponseMetaData. */
|
|
10699
|
+
interface IResponseMetaData {
|
|
10700
|
+
|
|
10701
|
+
/** ResponseMetaData dataLossFromOtherRow */
|
|
10702
|
+
dataLossFromOtherRow?: (boolean|null);
|
|
10703
|
+
|
|
10704
|
+
/** ResponseMetaData schemaRestrictionResponse */
|
|
10705
|
+
schemaRestrictionResponse?: (google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse|null);
|
|
10706
|
+
|
|
10707
|
+
/** ResponseMetaData currencyCode */
|
|
10708
|
+
currencyCode?: (string|null);
|
|
10709
|
+
|
|
10710
|
+
/** ResponseMetaData timeZone */
|
|
10711
|
+
timeZone?: (string|null);
|
|
10712
|
+
|
|
10713
|
+
/** ResponseMetaData emptyReason */
|
|
10714
|
+
emptyReason?: (string|null);
|
|
10715
|
+
|
|
10716
|
+
/** ResponseMetaData subjectToThresholding */
|
|
10717
|
+
subjectToThresholding?: (boolean|null);
|
|
10718
|
+
}
|
|
10719
|
+
|
|
10720
|
+
/** Represents a ResponseMetaData. */
|
|
10721
|
+
class ResponseMetaData implements IResponseMetaData {
|
|
10722
|
+
|
|
10723
|
+
/**
|
|
10724
|
+
* Constructs a new ResponseMetaData.
|
|
10725
|
+
* @param [properties] Properties to set
|
|
10726
|
+
*/
|
|
10727
|
+
constructor(properties?: google.analytics.data.v1alpha.IResponseMetaData);
|
|
10728
|
+
|
|
10729
|
+
/** ResponseMetaData dataLossFromOtherRow. */
|
|
10730
|
+
public dataLossFromOtherRow: boolean;
|
|
10731
|
+
|
|
10732
|
+
/** ResponseMetaData schemaRestrictionResponse. */
|
|
10733
|
+
public schemaRestrictionResponse?: (google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse|null);
|
|
10734
|
+
|
|
10735
|
+
/** ResponseMetaData currencyCode. */
|
|
10736
|
+
public currencyCode?: (string|null);
|
|
10737
|
+
|
|
10738
|
+
/** ResponseMetaData timeZone. */
|
|
10739
|
+
public timeZone?: (string|null);
|
|
10740
|
+
|
|
10741
|
+
/** ResponseMetaData emptyReason. */
|
|
10742
|
+
public emptyReason?: (string|null);
|
|
10743
|
+
|
|
10744
|
+
/** ResponseMetaData subjectToThresholding. */
|
|
10745
|
+
public subjectToThresholding?: (boolean|null);
|
|
10746
|
+
|
|
10747
|
+
/** ResponseMetaData _schemaRestrictionResponse. */
|
|
10748
|
+
public _schemaRestrictionResponse?: "schemaRestrictionResponse";
|
|
8474
10749
|
|
|
8475
|
-
/**
|
|
8476
|
-
public
|
|
10750
|
+
/** ResponseMetaData _currencyCode. */
|
|
10751
|
+
public _currencyCode?: "currencyCode";
|
|
8477
10752
|
|
|
8478
|
-
/**
|
|
8479
|
-
public
|
|
10753
|
+
/** ResponseMetaData _timeZone. */
|
|
10754
|
+
public _timeZone?: "timeZone";
|
|
8480
10755
|
|
|
8481
|
-
/**
|
|
8482
|
-
public
|
|
10756
|
+
/** ResponseMetaData _emptyReason. */
|
|
10757
|
+
public _emptyReason?: "emptyReason";
|
|
10758
|
+
|
|
10759
|
+
/** ResponseMetaData _subjectToThresholding. */
|
|
10760
|
+
public _subjectToThresholding?: "subjectToThresholding";
|
|
8483
10761
|
|
|
8484
10762
|
/**
|
|
8485
|
-
* Creates a new
|
|
10763
|
+
* Creates a new ResponseMetaData instance using the specified properties.
|
|
8486
10764
|
* @param [properties] Properties to set
|
|
8487
|
-
* @returns
|
|
10765
|
+
* @returns ResponseMetaData instance
|
|
8488
10766
|
*/
|
|
8489
|
-
public static create(properties?: google.analytics.data.v1alpha.
|
|
10767
|
+
public static create(properties?: google.analytics.data.v1alpha.IResponseMetaData): google.analytics.data.v1alpha.ResponseMetaData;
|
|
8490
10768
|
|
|
8491
10769
|
/**
|
|
8492
|
-
* Encodes the specified
|
|
8493
|
-
* @param message
|
|
10770
|
+
* Encodes the specified ResponseMetaData message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.verify|verify} messages.
|
|
10771
|
+
* @param message ResponseMetaData message or plain object to encode
|
|
8494
10772
|
* @param [writer] Writer to encode to
|
|
8495
10773
|
* @returns Writer
|
|
8496
10774
|
*/
|
|
8497
|
-
public static encode(message: google.analytics.data.v1alpha.
|
|
10775
|
+
public static encode(message: google.analytics.data.v1alpha.IResponseMetaData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8498
10776
|
|
|
8499
10777
|
/**
|
|
8500
|
-
* Encodes the specified
|
|
8501
|
-
* @param message
|
|
10778
|
+
* Encodes the specified ResponseMetaData message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.verify|verify} messages.
|
|
10779
|
+
* @param message ResponseMetaData message or plain object to encode
|
|
8502
10780
|
* @param [writer] Writer to encode to
|
|
8503
10781
|
* @returns Writer
|
|
8504
10782
|
*/
|
|
8505
|
-
public static encodeDelimited(message: google.analytics.data.v1alpha.
|
|
10783
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.IResponseMetaData, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
8506
10784
|
|
|
8507
10785
|
/**
|
|
8508
|
-
* Decodes a
|
|
10786
|
+
* Decodes a ResponseMetaData message from the specified reader or buffer.
|
|
8509
10787
|
* @param reader Reader or buffer to decode from
|
|
8510
10788
|
* @param [length] Message length if known beforehand
|
|
8511
|
-
* @returns
|
|
10789
|
+
* @returns ResponseMetaData
|
|
8512
10790
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8513
10791
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8514
10792
|
*/
|
|
8515
|
-
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.
|
|
10793
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseMetaData;
|
|
8516
10794
|
|
|
8517
10795
|
/**
|
|
8518
|
-
* Decodes a
|
|
10796
|
+
* Decodes a ResponseMetaData message from the specified reader or buffer, length delimited.
|
|
8519
10797
|
* @param reader Reader or buffer to decode from
|
|
8520
|
-
* @returns
|
|
10798
|
+
* @returns ResponseMetaData
|
|
8521
10799
|
* @throws {Error} If the payload is not a reader or valid buffer
|
|
8522
10800
|
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
8523
10801
|
*/
|
|
8524
|
-
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.
|
|
10802
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseMetaData;
|
|
8525
10803
|
|
|
8526
10804
|
/**
|
|
8527
|
-
* Verifies a
|
|
10805
|
+
* Verifies a ResponseMetaData message.
|
|
8528
10806
|
* @param message Plain object to verify
|
|
8529
10807
|
* @returns `null` if valid, otherwise the reason why it is not
|
|
8530
10808
|
*/
|
|
8531
10809
|
public static verify(message: { [k: string]: any }): (string|null);
|
|
8532
10810
|
|
|
8533
10811
|
/**
|
|
8534
|
-
* Creates a
|
|
10812
|
+
* Creates a ResponseMetaData message from a plain object. Also converts values to their respective internal types.
|
|
8535
10813
|
* @param object Plain object
|
|
8536
|
-
* @returns
|
|
10814
|
+
* @returns ResponseMetaData
|
|
8537
10815
|
*/
|
|
8538
|
-
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.
|
|
10816
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseMetaData;
|
|
8539
10817
|
|
|
8540
10818
|
/**
|
|
8541
|
-
* Creates a plain object from a
|
|
8542
|
-
* @param message
|
|
10819
|
+
* Creates a plain object from a ResponseMetaData message. Also converts values to other types if specified.
|
|
10820
|
+
* @param message ResponseMetaData
|
|
8543
10821
|
* @param [options] Conversion options
|
|
8544
10822
|
* @returns Plain object
|
|
8545
10823
|
*/
|
|
8546
|
-
public static toObject(message: google.analytics.data.v1alpha.
|
|
10824
|
+
public static toObject(message: google.analytics.data.v1alpha.ResponseMetaData, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
8547
10825
|
|
|
8548
10826
|
/**
|
|
8549
|
-
* Converts this
|
|
10827
|
+
* Converts this ResponseMetaData to JSON.
|
|
8550
10828
|
* @returns JSON object
|
|
8551
10829
|
*/
|
|
8552
10830
|
public toJSON(): { [k: string]: any };
|
|
8553
10831
|
|
|
8554
10832
|
/**
|
|
8555
|
-
* Gets the default type url for
|
|
10833
|
+
* Gets the default type url for ResponseMetaData
|
|
8556
10834
|
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
8557
10835
|
* @returns The default type url
|
|
8558
10836
|
*/
|
|
8559
10837
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
8560
10838
|
}
|
|
8561
10839
|
|
|
10840
|
+
namespace ResponseMetaData {
|
|
10841
|
+
|
|
10842
|
+
/** Properties of a SchemaRestrictionResponse. */
|
|
10843
|
+
interface ISchemaRestrictionResponse {
|
|
10844
|
+
|
|
10845
|
+
/** SchemaRestrictionResponse activeMetricRestrictions */
|
|
10846
|
+
activeMetricRestrictions?: (google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction[]|null);
|
|
10847
|
+
}
|
|
10848
|
+
|
|
10849
|
+
/** Represents a SchemaRestrictionResponse. */
|
|
10850
|
+
class SchemaRestrictionResponse implements ISchemaRestrictionResponse {
|
|
10851
|
+
|
|
10852
|
+
/**
|
|
10853
|
+
* Constructs a new SchemaRestrictionResponse.
|
|
10854
|
+
* @param [properties] Properties to set
|
|
10855
|
+
*/
|
|
10856
|
+
constructor(properties?: google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse);
|
|
10857
|
+
|
|
10858
|
+
/** SchemaRestrictionResponse activeMetricRestrictions. */
|
|
10859
|
+
public activeMetricRestrictions: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction[];
|
|
10860
|
+
|
|
10861
|
+
/**
|
|
10862
|
+
* Creates a new SchemaRestrictionResponse instance using the specified properties.
|
|
10863
|
+
* @param [properties] Properties to set
|
|
10864
|
+
* @returns SchemaRestrictionResponse instance
|
|
10865
|
+
*/
|
|
10866
|
+
public static create(properties?: google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse;
|
|
10867
|
+
|
|
10868
|
+
/**
|
|
10869
|
+
* Encodes the specified SchemaRestrictionResponse message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.verify|verify} messages.
|
|
10870
|
+
* @param message SchemaRestrictionResponse message or plain object to encode
|
|
10871
|
+
* @param [writer] Writer to encode to
|
|
10872
|
+
* @returns Writer
|
|
10873
|
+
*/
|
|
10874
|
+
public static encode(message: google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10875
|
+
|
|
10876
|
+
/**
|
|
10877
|
+
* Encodes the specified SchemaRestrictionResponse message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.verify|verify} messages.
|
|
10878
|
+
* @param message SchemaRestrictionResponse message or plain object to encode
|
|
10879
|
+
* @param [writer] Writer to encode to
|
|
10880
|
+
* @returns Writer
|
|
10881
|
+
*/
|
|
10882
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseMetaData.ISchemaRestrictionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10883
|
+
|
|
10884
|
+
/**
|
|
10885
|
+
* Decodes a SchemaRestrictionResponse message from the specified reader or buffer.
|
|
10886
|
+
* @param reader Reader or buffer to decode from
|
|
10887
|
+
* @param [length] Message length if known beforehand
|
|
10888
|
+
* @returns SchemaRestrictionResponse
|
|
10889
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10890
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10891
|
+
*/
|
|
10892
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse;
|
|
10893
|
+
|
|
10894
|
+
/**
|
|
10895
|
+
* Decodes a SchemaRestrictionResponse message from the specified reader or buffer, length delimited.
|
|
10896
|
+
* @param reader Reader or buffer to decode from
|
|
10897
|
+
* @returns SchemaRestrictionResponse
|
|
10898
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10899
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10900
|
+
*/
|
|
10901
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse;
|
|
10902
|
+
|
|
10903
|
+
/**
|
|
10904
|
+
* Verifies a SchemaRestrictionResponse message.
|
|
10905
|
+
* @param message Plain object to verify
|
|
10906
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
10907
|
+
*/
|
|
10908
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
10909
|
+
|
|
10910
|
+
/**
|
|
10911
|
+
* Creates a SchemaRestrictionResponse message from a plain object. Also converts values to their respective internal types.
|
|
10912
|
+
* @param object Plain object
|
|
10913
|
+
* @returns SchemaRestrictionResponse
|
|
10914
|
+
*/
|
|
10915
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse;
|
|
10916
|
+
|
|
10917
|
+
/**
|
|
10918
|
+
* Creates a plain object from a SchemaRestrictionResponse message. Also converts values to other types if specified.
|
|
10919
|
+
* @param message SchemaRestrictionResponse
|
|
10920
|
+
* @param [options] Conversion options
|
|
10921
|
+
* @returns Plain object
|
|
10922
|
+
*/
|
|
10923
|
+
public static toObject(message: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
10924
|
+
|
|
10925
|
+
/**
|
|
10926
|
+
* Converts this SchemaRestrictionResponse to JSON.
|
|
10927
|
+
* @returns JSON object
|
|
10928
|
+
*/
|
|
10929
|
+
public toJSON(): { [k: string]: any };
|
|
10930
|
+
|
|
10931
|
+
/**
|
|
10932
|
+
* Gets the default type url for SchemaRestrictionResponse
|
|
10933
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
10934
|
+
* @returns The default type url
|
|
10935
|
+
*/
|
|
10936
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
10937
|
+
}
|
|
10938
|
+
|
|
10939
|
+
namespace SchemaRestrictionResponse {
|
|
10940
|
+
|
|
10941
|
+
/** Properties of an ActiveMetricRestriction. */
|
|
10942
|
+
interface IActiveMetricRestriction {
|
|
10943
|
+
|
|
10944
|
+
/** ActiveMetricRestriction metricName */
|
|
10945
|
+
metricName?: (string|null);
|
|
10946
|
+
|
|
10947
|
+
/** ActiveMetricRestriction restrictedMetricTypes */
|
|
10948
|
+
restrictedMetricTypes?: (google.analytics.data.v1alpha.RestrictedMetricType[]|null);
|
|
10949
|
+
}
|
|
10950
|
+
|
|
10951
|
+
/** Represents an ActiveMetricRestriction. */
|
|
10952
|
+
class ActiveMetricRestriction implements IActiveMetricRestriction {
|
|
10953
|
+
|
|
10954
|
+
/**
|
|
10955
|
+
* Constructs a new ActiveMetricRestriction.
|
|
10956
|
+
* @param [properties] Properties to set
|
|
10957
|
+
*/
|
|
10958
|
+
constructor(properties?: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction);
|
|
10959
|
+
|
|
10960
|
+
/** ActiveMetricRestriction metricName. */
|
|
10961
|
+
public metricName?: (string|null);
|
|
10962
|
+
|
|
10963
|
+
/** ActiveMetricRestriction restrictedMetricTypes. */
|
|
10964
|
+
public restrictedMetricTypes: google.analytics.data.v1alpha.RestrictedMetricType[];
|
|
10965
|
+
|
|
10966
|
+
/** ActiveMetricRestriction _metricName. */
|
|
10967
|
+
public _metricName?: "metricName";
|
|
10968
|
+
|
|
10969
|
+
/**
|
|
10970
|
+
* Creates a new ActiveMetricRestriction instance using the specified properties.
|
|
10971
|
+
* @param [properties] Properties to set
|
|
10972
|
+
* @returns ActiveMetricRestriction instance
|
|
10973
|
+
*/
|
|
10974
|
+
public static create(properties?: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
|
|
10975
|
+
|
|
10976
|
+
/**
|
|
10977
|
+
* Encodes the specified ActiveMetricRestriction message. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
|
|
10978
|
+
* @param message ActiveMetricRestriction message or plain object to encode
|
|
10979
|
+
* @param [writer] Writer to encode to
|
|
10980
|
+
* @returns Writer
|
|
10981
|
+
*/
|
|
10982
|
+
public static encode(message: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10983
|
+
|
|
10984
|
+
/**
|
|
10985
|
+
* Encodes the specified ActiveMetricRestriction message, length delimited. Does not implicitly {@link google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction.verify|verify} messages.
|
|
10986
|
+
* @param message ActiveMetricRestriction message or plain object to encode
|
|
10987
|
+
* @param [writer] Writer to encode to
|
|
10988
|
+
* @returns Writer
|
|
10989
|
+
*/
|
|
10990
|
+
public static encodeDelimited(message: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.IActiveMetricRestriction, writer?: $protobuf.Writer): $protobuf.Writer;
|
|
10991
|
+
|
|
10992
|
+
/**
|
|
10993
|
+
* Decodes an ActiveMetricRestriction message from the specified reader or buffer.
|
|
10994
|
+
* @param reader Reader or buffer to decode from
|
|
10995
|
+
* @param [length] Message length if known beforehand
|
|
10996
|
+
* @returns ActiveMetricRestriction
|
|
10997
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
10998
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
10999
|
+
*/
|
|
11000
|
+
public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
|
|
11001
|
+
|
|
11002
|
+
/**
|
|
11003
|
+
* Decodes an ActiveMetricRestriction message from the specified reader or buffer, length delimited.
|
|
11004
|
+
* @param reader Reader or buffer to decode from
|
|
11005
|
+
* @returns ActiveMetricRestriction
|
|
11006
|
+
* @throws {Error} If the payload is not a reader or valid buffer
|
|
11007
|
+
* @throws {$protobuf.util.ProtocolError} If required fields are missing
|
|
11008
|
+
*/
|
|
11009
|
+
public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
|
|
11010
|
+
|
|
11011
|
+
/**
|
|
11012
|
+
* Verifies an ActiveMetricRestriction message.
|
|
11013
|
+
* @param message Plain object to verify
|
|
11014
|
+
* @returns `null` if valid, otherwise the reason why it is not
|
|
11015
|
+
*/
|
|
11016
|
+
public static verify(message: { [k: string]: any }): (string|null);
|
|
11017
|
+
|
|
11018
|
+
/**
|
|
11019
|
+
* Creates an ActiveMetricRestriction message from a plain object. Also converts values to their respective internal types.
|
|
11020
|
+
* @param object Plain object
|
|
11021
|
+
* @returns ActiveMetricRestriction
|
|
11022
|
+
*/
|
|
11023
|
+
public static fromObject(object: { [k: string]: any }): google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction;
|
|
11024
|
+
|
|
11025
|
+
/**
|
|
11026
|
+
* Creates a plain object from an ActiveMetricRestriction message. Also converts values to other types if specified.
|
|
11027
|
+
* @param message ActiveMetricRestriction
|
|
11028
|
+
* @param [options] Conversion options
|
|
11029
|
+
* @returns Plain object
|
|
11030
|
+
*/
|
|
11031
|
+
public static toObject(message: google.analytics.data.v1alpha.ResponseMetaData.SchemaRestrictionResponse.ActiveMetricRestriction, options?: $protobuf.IConversionOptions): { [k: string]: any };
|
|
11032
|
+
|
|
11033
|
+
/**
|
|
11034
|
+
* Converts this ActiveMetricRestriction to JSON.
|
|
11035
|
+
* @returns JSON object
|
|
11036
|
+
*/
|
|
11037
|
+
public toJSON(): { [k: string]: any };
|
|
11038
|
+
|
|
11039
|
+
/**
|
|
11040
|
+
* Gets the default type url for ActiveMetricRestriction
|
|
11041
|
+
* @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
|
|
11042
|
+
* @returns The default type url
|
|
11043
|
+
*/
|
|
11044
|
+
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
11045
|
+
}
|
|
11046
|
+
}
|
|
11047
|
+
}
|
|
11048
|
+
|
|
8562
11049
|
/** Properties of a DimensionHeader. */
|
|
8563
11050
|
interface IDimensionHeader {
|
|
8564
11051
|
|
|
@@ -13457,6 +15944,15 @@ export namespace google {
|
|
|
13457
15944
|
public static getTypeUrl(typeUrlPrefix?: string): string;
|
|
13458
15945
|
}
|
|
13459
15946
|
|
|
15947
|
+
/** MetricAggregation enum. */
|
|
15948
|
+
enum MetricAggregation {
|
|
15949
|
+
METRIC_AGGREGATION_UNSPECIFIED = 0,
|
|
15950
|
+
TOTAL = 1,
|
|
15951
|
+
MINIMUM = 5,
|
|
15952
|
+
MAXIMUM = 6,
|
|
15953
|
+
COUNT = 4
|
|
15954
|
+
}
|
|
15955
|
+
|
|
13460
15956
|
/** MetricType enum. */
|
|
13461
15957
|
enum MetricType {
|
|
13462
15958
|
METRIC_TYPE_UNSPECIFIED = 0,
|
|
@@ -13473,6 +15969,13 @@ export namespace google {
|
|
|
13473
15969
|
TYPE_METERS = 12,
|
|
13474
15970
|
TYPE_KILOMETERS = 13
|
|
13475
15971
|
}
|
|
15972
|
+
|
|
15973
|
+
/** RestrictedMetricType enum. */
|
|
15974
|
+
enum RestrictedMetricType {
|
|
15975
|
+
RESTRICTED_METRIC_TYPE_UNSPECIFIED = 0,
|
|
15976
|
+
COST_DATA = 1,
|
|
15977
|
+
REVENUE_DATA = 2
|
|
15978
|
+
}
|
|
13476
15979
|
}
|
|
13477
15980
|
|
|
13478
15981
|
/** Namespace v1beta. */
|