Class PurchasesResource.VoidedpurchasesResource.ListRequest
Lists the purchases that were canceled, refunded or charged-back.
Inheritance
System.Object
PurchasesResource.VoidedpurchasesResource.ListRequest
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.Finalize()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Assembly: Google.Apis.AndroidPublisher.v2.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
public virtual Nullable<long> EndTime { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int64> |
|
HttpMethod
Declaration
public override string HttpMethod { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v2.Data.VoidedPurchasesListResponse>.HttpMethod
MaxResults
Declaration
public virtual Nullable<long> MaxResults { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int64> |
|
MethodName
Declaration
public override string MethodName { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v2.Data.VoidedPurchasesListResponse>.MethodName
PackageName
The package name of the application for which voided purchases need to be returned (for
example, 'com.some.thing').
Declaration
public virtual string PackageName { get; }
Property Value
| Type |
Description |
| System.String |
|
RestPath
Declaration
public override string RestPath { get; }
Property Value
| Type |
Description |
| System.String |
|
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.AndroidPublisher.v2.Data.VoidedPurchasesListResponse>.RestPath
StartIndex
Declaration
public virtual Nullable<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
public virtual Nullable<long> StartTime { get; set; }
Property Value
| Type |
Description |
| System.Nullable<System.Int64> |
|
Token
Declaration
public virtual string Token { get; set; }
Property Value
| Type |
Description |
| System.String |
|
Methods
InitParameters()
Initializes List parameter list.
Declaration
protected override void InitParameters()
Overrides
Google.Apis.AndroidPublisher.v2.AndroidPublisherBaseServiceRequest<Google.Apis.AndroidPublisher.v2.Data.VoidedPurchasesListResponse>.InitParameters()
Implements