Class: Google::Apis::AndroidpublisherV3::RefundEvent

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

Overview

Details of when the order was fully refunded.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RefundEvent

Returns a new instance of RefundEvent.



7243
7244
7245
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7243

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

Instance Attribute Details

#event_timeString

The time when the order was fully refunded. Corresponds to the JSON property eventTime

Returns:

  • (String)


7231
7232
7233
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7231

def event_time
  @event_time
end

#refund_detailsGoogle::Apis::AndroidpublisherV3::RefundDetails

Details for a partial or full refund. Corresponds to the JSON property refundDetails



7236
7237
7238
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7236

def refund_details
  @refund_details
end

#refund_reasonString

The reason the order was refunded. Corresponds to the JSON property refundReason

Returns:

  • (String)


7241
7242
7243
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7241

def refund_reason
  @refund_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7248
7249
7250
7251
7252
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 7248

def update!(**args)
  @event_time = args[:event_time] if args.key?(:event_time)
  @refund_details = args[:refund_details] if args.key?(:refund_details)
  @refund_reason = args[:refund_reason] if args.key?(:refund_reason)
end