Show / Hide Table of Contents

Class VitalsResource.ErrorsResource.ReportsResource.SearchRequest

Searches all error reports received for an app.

Inheritance
object
ClientServiceRequest
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>
VitalsResource.ErrorsResource.ReportsResource.SearchRequest
Implements
IClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>
IClientServiceRequest
Inherited Members
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Xgafv
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.AccessToken
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Alt
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Callback
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Fields
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Key
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.OauthToken
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.PrettyPrint
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.QuotaUser
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.UploadType
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.UploadProtocol
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Execute()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ExecuteAsStream()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ExecuteAsync()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.CreateRequest(bool?)
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.GenerateRequestUri()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.GetBody()
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.GetDefaultETagAction(string)
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ETagAction
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ModifyRequest
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ValidateParameters
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.ApiVersion
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.RequestParameters
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Playdeveloperreporting.v1alpha1
Assembly: Google.Apis.Playdeveloperreporting.v1alpha1.dll
Syntax
public class VitalsResource.ErrorsResource.ReportsResource.SearchRequest : PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>, IClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>, IClientServiceRequest

Constructors

SearchRequest(IClientService, string)

Constructs a new Search request.

Declaration
public SearchRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
string parent

Properties

Filter

A selection predicate to retrieve only a subset of the reports. For filtering basics, please check AIP-160. ** Supported field names:** * apiLevel: Matches error reports that occurred in the requested Android versions (specified as the numeric API level) only. Example: apiLevel = 28 OR apiLevel = 29. * versionCode: Matches error reports that occurred in the requested app version codes only. Example: versionCode = 123 OR versionCode = 456. * deviceModel: Matches error issues that occurred in the requested devices. Example: deviceModel = "google/walleye" OR deviceModel = "google/marlin". * deviceBrand: Matches error issues that occurred in the requested device brands. Example: deviceBrand = "Google". * deviceType: Matches error reports that occurred in the requested device types. Example: deviceType = "PHONE". * errorIssueType: Matches error reports of the requested types only. Valid candidates: CRASH, ANR, NON_FATAL. Example: errorIssueType = CRASH OR errorIssueType = ANR. * errorIssueId: Matches error reports belonging to the requested error issue ids only. Example: errorIssueId = 1234 OR errorIssueId = 4567. * errorReportId: Matches error reports with the requested error report id. Example: errorReportId = 1234 OR errorReportId = 4567. * appProcessState: Matches error reports on the process state of an app, indicating whether an app runs in the foreground (user-visible) or background. Valid candidates: FOREGROUND, BACKGROUND. Example: appProcessState = FOREGROUND. * isUserPerceived: Matches error reports that are user-perceived. It is not accompanied by any operators. Example: isUserPerceived. ** Supported operators:** * Comparison operators: The only supported comparison operator is equality. The filtered field must appear on the left hand side of the comparison. * Logical Operators: Logical operators ANDandORcan be used to build complex filters following a conjunctive normal form (CNF), i.e., conjunctions of disjunctions. TheORoperator takes precedence overANDso the use of parenthesis is not necessary when building CNF. TheORoperator is only supported to build disjunctions that apply to the same field, e.g.,versionCode = 123 OR versionCode = ANR. The filter expression versionCode = 123 OR errorIssueType = ANRis not valid. ** Examples ** Some valid filtering expressions: *versionCode = 123 AND errorIssueType = ANR*versionCode = 123 AND errorIssueType = OR errorIssueType = CRASH*versionCode = 123 AND (errorIssueType = OR errorIssueType = CRASH)`

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
string

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.HttpMethod

IntervalEndTimeDay

Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.

Declaration
[RequestParameter("interval.endTime.day", RequestParameterType.Query)]
public virtual int? IntervalEndTimeDay { get; set; }
Property Value
Type Description
int?

IntervalEndTimeHours

Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Declaration
[RequestParameter("interval.endTime.hours", RequestParameterType.Query)]
public virtual int? IntervalEndTimeHours { get; set; }
Property Value
Type Description
int?

IntervalEndTimeMinutes

Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.

Declaration
[RequestParameter("interval.endTime.minutes", RequestParameterType.Query)]
public virtual int? IntervalEndTimeMinutes { get; set; }
Property Value
Type Description
int?

IntervalEndTimeMonth

Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.

Declaration
[RequestParameter("interval.endTime.month", RequestParameterType.Query)]
public virtual int? IntervalEndTimeMonth { get; set; }
Property Value
Type Description
int?

IntervalEndTimeNanos

Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.

Declaration
[RequestParameter("interval.endTime.nanos", RequestParameterType.Query)]
public virtual int? IntervalEndTimeNanos { get; set; }
Property Value
Type Description
int?

IntervalEndTimeSeconds

Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.

Declaration
[RequestParameter("interval.endTime.seconds", RequestParameterType.Query)]
public virtual int? IntervalEndTimeSeconds { get; set; }
Property Value
Type Description
int?

IntervalEndTimeTimeZoneId

IANA Time Zone Database time zone. For example "America/New_York".

Declaration
[RequestParameter("interval.endTime.timeZone.id", RequestParameterType.Query)]
public virtual string IntervalEndTimeTimeZoneId { get; set; }
Property Value
Type Description
string

IntervalEndTimeTimeZoneVersion

Optional. IANA Time Zone Database version number. For example "2019a".

Declaration
[RequestParameter("interval.endTime.timeZone.version", RequestParameterType.Query)]
public virtual string IntervalEndTimeTimeZoneVersion { get; set; }
Property Value
Type Description
string

IntervalEndTimeUtcOffset

UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.

Declaration
[RequestParameter("interval.endTime.utcOffset", RequestParameterType.Query)]
public virtual object IntervalEndTimeUtcOffset { get; set; }
Property Value
Type Description
object

IntervalEndTimeYear

Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.

Declaration
[RequestParameter("interval.endTime.year", RequestParameterType.Query)]
public virtual int? IntervalEndTimeYear { get; set; }
Property Value
Type Description
int?

IntervalStartTimeDay

Optional. Day of month. Must be from 1 to 31 and valid for the year and month, or 0 if specifying a datetime without a day.

Declaration
[RequestParameter("interval.startTime.day", RequestParameterType.Query)]
public virtual int? IntervalStartTimeDay { get; set; }
Property Value
Type Description
int?

IntervalStartTimeHours

Optional. Hours of day in 24 hour format. Should be from 0 to 23, defaults to 0 (midnight). An API may choose to allow the value "24:00:00" for scenarios like business closing time.

Declaration
[RequestParameter("interval.startTime.hours", RequestParameterType.Query)]
public virtual int? IntervalStartTimeHours { get; set; }
Property Value
Type Description
int?

IntervalStartTimeMinutes

Optional. Minutes of hour of day. Must be from 0 to 59, defaults to 0.

Declaration
[RequestParameter("interval.startTime.minutes", RequestParameterType.Query)]
public virtual int? IntervalStartTimeMinutes { get; set; }
Property Value
Type Description
int?

IntervalStartTimeMonth

Optional. Month of year. Must be from 1 to 12, or 0 if specifying a datetime without a month.

Declaration
[RequestParameter("interval.startTime.month", RequestParameterType.Query)]
public virtual int? IntervalStartTimeMonth { get; set; }
Property Value
Type Description
int?

IntervalStartTimeNanos

Optional. Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999, defaults to 0.

Declaration
[RequestParameter("interval.startTime.nanos", RequestParameterType.Query)]
public virtual int? IntervalStartTimeNanos { get; set; }
Property Value
Type Description
int?

IntervalStartTimeSeconds

Optional. Seconds of minutes of the time. Must normally be from 0 to 59, defaults to 0. An API may allow the value 60 if it allows leap-seconds.

Declaration
[RequestParameter("interval.startTime.seconds", RequestParameterType.Query)]
public virtual int? IntervalStartTimeSeconds { get; set; }
Property Value
Type Description
int?

IntervalStartTimeTimeZoneId

IANA Time Zone Database time zone. For example "America/New_York".

Declaration
[RequestParameter("interval.startTime.timeZone.id", RequestParameterType.Query)]
public virtual string IntervalStartTimeTimeZoneId { get; set; }
Property Value
Type Description
string

IntervalStartTimeTimeZoneVersion

Optional. IANA Time Zone Database version number. For example "2019a".

Declaration
[RequestParameter("interval.startTime.timeZone.version", RequestParameterType.Query)]
public virtual string IntervalStartTimeTimeZoneVersion { get; set; }
Property Value
Type Description
string

IntervalStartTimeUtcOffset

UTC offset. Must be whole seconds, between -18 hours and +18 hours. For example, a UTC offset of -4:00 would be represented as { seconds: -14400 }.

Declaration
[RequestParameter("interval.startTime.utcOffset", RequestParameterType.Query)]
public virtual object IntervalStartTimeUtcOffset { get; set; }
Property Value
Type Description
object

IntervalStartTimeYear

Optional. Year of date. Must be from 1 to 9999, or 0 if specifying a datetime without a year.

Declaration
[RequestParameter("interval.startTime.year", RequestParameterType.Query)]
public virtual int? IntervalStartTimeYear { get; set; }
Property Value
Type Description
int?

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.MethodName

PageSize

The maximum number of reports to return. The service may return fewer than this value. If unspecified, at most 50 reports will be returned. The maximum value is 100; values above 100 will be coerced to 100.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
int?

PageToken

A page token, received from a previous SearchErrorReports call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to SearchErrorReports must match the call that provided the page token.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
string

Parent

Required. Parent resource of the reports, indicating the application for which they were received. Format: apps/{app}

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
string

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.RestPath

Methods

InitParameters()

Initializes Search parameter list.

Declaration
protected override void InitParameters()
Overrides
PlaydeveloperreportingBaseServiceRequest<GooglePlayDeveloperReportingV1alpha1SearchErrorReportsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX