Show / Hide Table of Contents

Class PurchasesResource.VoidedpurchasesResource.ListRequest

Lists the purchases that were canceled, refunded or charged-back.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<VoidedPurchasesListResponse>
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>
PurchasesResource.VoidedpurchasesResource.ListRequest
Implements
IClientServiceRequest<VoidedPurchasesListResponse>
IClientServiceRequest
Inherited Members
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.Xgafv
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.AccessToken
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.Alt
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.Callback
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.Fields
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.Key
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.OauthToken
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.PrettyPrint
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.QuotaUser
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.UploadType
AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>.UploadProtocol
ClientServiceRequest<VoidedPurchasesListResponse>.Execute()
ClientServiceRequest<VoidedPurchasesListResponse>.ExecuteAsStream()
ClientServiceRequest<VoidedPurchasesListResponse>.ExecuteAsync()
ClientServiceRequest<VoidedPurchasesListResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<VoidedPurchasesListResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<VoidedPurchasesListResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<VoidedPurchasesListResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<VoidedPurchasesListResponse>.GenerateRequestUri()
ClientServiceRequest<VoidedPurchasesListResponse>.GetBody()
ClientServiceRequest<VoidedPurchasesListResponse>.GetDefaultETagAction(String)
ClientServiceRequest<VoidedPurchasesListResponse>.ETagAction
ClientServiceRequest<VoidedPurchasesListResponse>.ModifyRequest
ClientServiceRequest<VoidedPurchasesListResponse>.ValidateParameters
ClientServiceRequest<VoidedPurchasesListResponse>.RequestParameters
ClientServiceRequest<VoidedPurchasesListResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.AndroidPublisher.v3
Assembly: Google.Apis.AndroidPublisher.v3.dll
Syntax
public class ListRequest : AndroidPublisherBaseServiceRequest<VoidedPurchasesListResponse>, IClientServiceRequest<VoidedPurchasesListResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string packageName)
Parameters
Type Name Description
IClientService service
System.String packageName

Properties

EndTime

The time, in milliseconds since the Epoch, of the newest voided purchase that you want to see in the response. The value of this parameter cannot be greater than the current time and is ignored if a pagination token is set. Default value is current time. Note: This filter is applied on the time at which the record is seen as voided by our systems and not the actual voided time returned in the response.

Declaration
[RequestParameter("endTime", RequestParameterType.Query)]
public virtual long? EndTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v3.Data.VoidedPurchasesListResponse>.HttpMethod

MaxResults

Defines how many results the list operation should return. The default number depends on the resource collection.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v3.Data.VoidedPurchasesListResponse>.MethodName

PackageName

The package name of the application for which voided purchases need to be returned (for example, 'com.some.thing').

Declaration
[RequestParameter("packageName", RequestParameterType.Path)]
public virtual string PackageName { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v3.Data.VoidedPurchasesListResponse>.RestPath

StartIndex

Defines the index of the first element to return. This can only be used if indexed paging is enabled.

Declaration
[RequestParameter("startIndex", RequestParameterType.Query)]
public virtual long? StartIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

StartTime

The time, in milliseconds since the Epoch, of the oldest voided purchase that you want to see in the response. The value of this parameter cannot be older than 30 days and is ignored if a pagination token is set. Default value is current time minus 30 days. Note: This filter is applied on the time at which the record is seen as voided by our systems and not the actual voided time returned in the response.

Declaration
[RequestParameter("startTime", RequestParameterType.Query)]
public virtual long? StartTime { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Token

Defines the token of the page to return, usually taken from TokenPagination. This can only be used if token paging is enabled.

Declaration
[RequestParameter("token", RequestParameterType.Query)]
public virtual string Token { get; set; }
Property Value
Type Description
System.String

Type

The type of voided purchases that you want to see in the response. Possible values are: 0. Only voided in-app product purchases will be returned in the response. This is the default value. 1. Both voided in-app purchases and voided subscription purchases will be returned in the response. Note: Before requesting to receive voided subscription purchases, you must switch to use orderId in the response which uniquely identifies one-time purchases and subscriptions. Otherwise, you will receive multiple subscription orders with the same PurchaseToken, because subscription renewal orders share the same PurchaseToken.

Declaration
[RequestParameter("type", RequestParameterType.Query)]
public virtual int? Type { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.AndroidPublisher.v3.AndroidPublisherBaseServiceRequest<Google.Apis.AndroidPublisher.v3.Data.VoidedPurchasesListResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top Generated by DocFX