Class: Google::Apis::AndroidpublisherV3::SubscriptionCancelSurveyResult

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 provided by the user when they complete the subscription cancellation flow (cancellation reason survey).

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SubscriptionCancelSurveyResult

Returns a new instance of SubscriptionCancelSurveyResult.



5417
5418
5419
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5417

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

Instance Attribute Details

#cancel_survey_reasonFixnum

The cancellation reason the user chose in the survey. Possible values are: 0. Other 1. I don't use this service enough 2. Technical issues 3. Cost-related reasons 4. I found a better app Corresponds to the JSON property cancelSurveyReason

Returns:

  • (Fixnum)


5409
5410
5411
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5409

def cancel_survey_reason
  @cancel_survey_reason
end

#user_input_cancel_reasonString

The customized input cancel reason from the user. Only present when cancelReason is 0. Corresponds to the JSON property userInputCancelReason

Returns:

  • (String)


5415
5416
5417
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5415

def user_input_cancel_reason
  @user_input_cancel_reason
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5422
5423
5424
5425
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 5422

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