Class: Google::Apis::AndroidpublisherV3::PartialRefundEvent
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::PartialRefundEvent
- 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 the partial refund events for this order.
Instance Attribute Summary collapse
-
#create_time ⇒ String
The time when the partial refund was created.
-
#process_time ⇒ String
The time when the partial refund was processed.
-
#refund_details ⇒ Google::Apis::AndroidpublisherV3::RefundDetails
Details for a partial or full refund.
-
#state ⇒ String
The state of the partial refund.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PartialRefundEvent
constructor
A new instance of PartialRefundEvent.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PartialRefundEvent
Returns a new instance of PartialRefundEvent.
6440 6441 6442 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6440 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
The time when the partial refund was created.
Corresponds to the JSON property createTime
6423 6424 6425 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6423 def create_time @create_time end |
#process_time ⇒ String
The time when the partial refund was processed.
Corresponds to the JSON property processTime
6428 6429 6430 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6428 def process_time @process_time end |
#refund_details ⇒ Google::Apis::AndroidpublisherV3::RefundDetails
Details for a partial or full refund.
Corresponds to the JSON property refundDetails
6433 6434 6435 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6433 def refund_details @refund_details end |
#state ⇒ String
The state of the partial refund.
Corresponds to the JSON property state
6438 6439 6440 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6438 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6445 6446 6447 6448 6449 6450 |
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 6445 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @process_time = args[:process_time] if args.key?(:process_time) @refund_details = args[:refund_details] if args.key?(:refund_details) @state = args[:state] if args.key?(:state) end |