Class: Google::Apis::AndroidpublisherV2::VoidedPurchase
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AndroidpublisherV2::VoidedPurchase
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v2/classes.rb,
 generated/google/apis/androidpublisher_v2/representations.rb,
 generated/google/apis/androidpublisher_v2/representations.rb
Overview
A VoidedPurchase resource indicates a purchase that was either canceled/ refunded/charged-back.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This kind represents a voided purchase object in the androidpublisher service. 
- 
  
    
      #purchase_time_millis  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which the purchase was made, in milliseconds since the epoch (Jan 1, 1970). 
- 
  
    
      #purchase_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The token that was generated when a purchase was made. 
- 
  
    
      #voided_time_millis  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which the purchase was canceled/refunded/charged-back, in milliseconds since the epoch (Jan 1, 1970). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ VoidedPurchase 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of VoidedPurchase. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VoidedPurchase
Returns a new instance of VoidedPurchase
| 1838 1839 1840 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1838 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
This kind represents a voided purchase object in the androidpublisher service.
Corresponds to the JSON property kind
| 1818 1819 1820 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1818 def kind @kind end | 
#purchase_time_millis ⇒ Fixnum
The time at which the purchase was made, in milliseconds since the epoch (Jan
1, 1970).
Corresponds to the JSON property purchaseTimeMillis
| 1824 1825 1826 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1824 def purchase_time_millis @purchase_time_millis end | 
#purchase_token ⇒ String
The token that was generated when a purchase was made. This uniquely
identifies a purchase.
Corresponds to the JSON property purchaseToken
| 1830 1831 1832 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1830 def purchase_token @purchase_token end | 
#voided_time_millis ⇒ Fixnum
The time at which the purchase was canceled/refunded/charged-back, in
milliseconds since the epoch (Jan 1, 1970).
Corresponds to the JSON property voidedTimeMillis
| 1836 1837 1838 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1836 def voided_time_millis @voided_time_millis end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1843 1844 1845 1846 1847 1848 | # File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1843 def update!(**args) @kind = args[:kind] if args.key?(:kind) @purchase_time_millis = args[:purchase_time_millis] if args.key?(:purchase_time_millis) @purchase_token = args[:purchase_token] if args.key?(:purchase_token) @voided_time_millis = args[:voided_time_millis] if args.key?(:voided_time_millis) end |