Class: Google::Apis::AndroidpublisherV1_1::InappPurchase

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/androidpublisher_v1_1/classes.rb,
generated/google/apis/androidpublisher_v1_1/representations.rb,
generated/google/apis/androidpublisher_v1_1/representations.rb

Overview

An InappPurchase resource indicates the status of a user's inapp product purchase.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ InappPurchase

Returns a new instance of InappPurchase.



77
78
79
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 77

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#consumption_stateFixnum

The consumption state of the inapp product. Possible values are:

  • Yet to be consumed
  • Consumed Corresponds to the JSON property consumptionState

Returns:

  • (Fixnum)


35
36
37
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 35

def consumption_state
  @consumption_state
end

#developer_payloadString

A developer-specified string that contains supplemental information about an order. Corresponds to the JSON property developerPayload

Returns:

  • (String)


41
42
43
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 41

def developer_payload
  @developer_payload
end

#kindString

This kind represents an inappPurchase object in the androidpublisher service. Corresponds to the JSON property kind

Returns:

  • (String)


46
47
48
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 46

def kind
  @kind
end

#order_idString

The order id associated with the purchase of the inapp product. Corresponds to the JSON property orderId

Returns:

  • (String)


51
52
53
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 51

def order_id
  @order_id
end

#purchase_stateFixnum

The purchase state of the order. Possible values are:

  • Purchased
  • Canceled
  • Pending Corresponds to the JSON property purchaseState

Returns:

  • (Fixnum)


59
60
61
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 59

def purchase_state
  @purchase_state
end

#purchase_timeFixnum

The time the product was purchased, in milliseconds since the epoch (Jan 1, 1970). Corresponds to the JSON property purchaseTime

Returns:

  • (Fixnum)


65
66
67
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 65

def purchase_time
  @purchase_time
end

#purchase_typeFixnum

The type of purchase of the inapp product. This field is only set if this purchase was not made using the standard in-app billing flow. Possible values are:

  • Test (i.e. purchased from a license testing account)
  • Promo (i.e. purchased using a promo code)
  • Rewarded (i.e. from watching a video ad instead of paying) Corresponds to the JSON property purchaseType

Returns:

  • (Fixnum)


75
76
77
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 75

def purchase_type
  @purchase_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



82
83
84
85
86
87
88
89
90
# File 'generated/google/apis/androidpublisher_v1_1/classes.rb', line 82

def update!(**args)
  @consumption_state = args[:consumption_state] if args.key?(:consumption_state)
  @developer_payload = args[:developer_payload] if args.key?(:developer_payload)
  @kind = args[:kind] if args.key?(:kind)
  @order_id = args[:order_id] if args.key?(:order_id)
  @purchase_state = args[:purchase_state] if args.key?(:purchase_state)
  @purchase_time = args[:purchase_time] if args.key?(:purchase_time)
  @purchase_type = args[:purchase_type] if args.key?(:purchase_type)
end