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
1737 1738 1739 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1737 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
1717 1718 1719 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1717 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
1723 1724 1725 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1723 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
1729 1730 1731 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1729 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
1735 1736 1737 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1735 def voided_time_millis @voided_time_millis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1742 1743 1744 1745 1746 1747 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1742 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 |