Class: Google::Apis::AndroidpublisherV3::VoidedPurchase
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::VoidedPurchase
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/google/apis/androidpublisher_v3/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
1917 1918 1919 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1917 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
1897 1898 1899 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1897 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
1903 1904 1905 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1903 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
1909 1910 1911 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1909 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
1915 1916 1917 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1915 def voided_time_millis @voided_time_millis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1922 1923 1924 1925 1926 1927 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1922 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 |