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
1892 1893 1894 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1892 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
1872 1873 1874 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1872 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
1878 1879 1880 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1878 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
1884 1885 1886 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1884 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
1890 1891 1892 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1890 def voided_time_millis @voided_time_millis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1897 1898 1899 1900 1901 1902 |
# File 'generated/google/apis/androidpublisher_v2/classes.rb', line 1897 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 |