Show / Hide Table of Contents

Class VoidedPurchase

A VoidedPurchase resource indicates a purchase that was either canceled/refunded/charged- back.

Inheritance
System.Object
VoidedPurchase
Implements
IDirectResponseSchema
Namespace: Google.Apis.AndroidPublisher.v2.Data
Assembly: Google.Apis.AndroidPublisher.v2.dll
Syntax
public class VoidedPurchase : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Kind

This kind represents a voided purchase object in the androidpublisher service.

Declaration
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

PurchaseTimeMillis

The time at which the purchase was made, in milliseconds since the epoch (Jan 1, 1970).

Declaration
public virtual Nullable<long> PurchaseTimeMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

PurchaseToken

The token which uniquely identifies a one-time purchase or subscription. To uniquely identify subscription renewals use order_id (available starting from version 3 of the API).

Declaration
public virtual string PurchaseToken { get; set; }
Property Value
Type Description
System.String

VoidedTimeMillis

The time at which the purchase was canceled/refunded/charged-back, in milliseconds since the epoch (Jan 1, 1970).

Declaration
public virtual Nullable<long> VoidedTimeMillis { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

IDirectResponseSchema
Back to top