Class: Google::Apis::AndroidpublisherV3::UserInitiatedCancellation

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

Information specific to cancellations initiated by users.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UserInitiatedCancellation

Returns a new instance of UserInitiatedCancellation.



4338
4339
4340
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4338

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

Instance Attribute Details

#cancel_survey_resultGoogle::Apis::AndroidpublisherV3::CancelSurveyResult

Result of the cancel survey when the subscription was canceled by the user. Corresponds to the JSON property cancelSurveyResult



4329
4330
4331
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4329

def cancel_survey_result
  @cancel_survey_result
end

#cancel_timeString

The time at which the subscription was canceled by the user. The user might still have access to the subscription after this time. Use line_items. expiry_time to determine if a user still has access. Corresponds to the JSON property cancelTime

Returns:

  • (String)


4336
4337
4338
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4336

def cancel_time
  @cancel_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4343
4344
4345
4346
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 4343

def update!(**args)
  @cancel_survey_result = args[:cancel_survey_result] if args.key?(:cancel_survey_result)
  @cancel_time = args[:cancel_time] if args.key?(:cancel_time)
end