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.
-
#order_id ⇒ String
The order id which uniquely identifies a one-time purchase, subscription purchase, or subscription renewal.
-
#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 which uniquely identifies a one-time purchase or subscription.
-
#voided_reason ⇒ Fixnum
The reason why the purchase was voided, possible values are: - Other - Remorse - Not_received - Defective - Accidental_purchase - Fraud - Friendly_fraud - Chargeback Corresponds to the JSON property
voidedReason
. -
#voided_source ⇒ Fixnum
The initiator of voided purchase, possible values are: - User - Developer - Google Corresponds to the JSON property
voidedSource
. -
#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
2124 2125 2126 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2124 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
2076 2077 2078 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2076 def kind @kind end |
#order_id ⇒ String
The order id which uniquely identifies a one-time purchase, subscription
purchase, or subscription renewal.
Corresponds to the JSON property orderId
2082 2083 2084 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2082 def order_id @order_id 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
2088 2089 2090 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2088 def purchase_time_millis @purchase_time_millis end |
#purchase_token ⇒ String
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).
Corresponds to the JSON property purchaseToken
2095 2096 2097 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2095 def purchase_token @purchase_token end |
#voided_reason ⇒ Fixnum
The reason why the purchase was voided, possible values are:
- Other
- Remorse
- Not_received
- Defective
- Accidental_purchase
- Fraud
- Friendly_fraud
- Chargeback
Corresponds to the JSON property
voidedReason
2108 2109 2110 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2108 def voided_reason @voided_reason end |
#voided_source ⇒ Fixnum
The initiator of voided purchase, possible values are:
- User
- Developer
- Google
Corresponds to the JSON property
voidedSource
2116 2117 2118 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2116 def voided_source @voided_source 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
2122 2123 2124 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2122 def voided_time_millis @voided_time_millis end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2129 2130 2131 2132 2133 2134 2135 2136 2137 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 2129 def update!(**args) @kind = args[:kind] if args.key?(:kind) @order_id = args[:order_id] if args.key?(:order_id) @purchase_time_millis = args[:purchase_time_millis] if args.key?(:purchase_time_millis) @purchase_token = args[:purchase_token] if args.key?(:purchase_token) @voided_reason = args[:voided_reason] if args.key?(:voided_reason) @voided_source = args[:voided_source] if args.key?(:voided_source) @voided_time_millis = args[:voided_time_millis] if args.key?(:voided_time_millis) end |