Class: Google::Apis::AndroidpublisherV3::SubscriptionCancelSurveyResult
- Inherits:
-
Object
- Object
- Google::Apis::AndroidpublisherV3::SubscriptionCancelSurveyResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/androidpublisher_v3/classes.rb,
generated/google/apis/androidpublisher_v3/representations.rb,
generated/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
-
#cancel_survey_reason ⇒ Fixnum
The cancellation reason the user chose in the survey.
-
#user_input_cancel_reason ⇒ String
The customized input cancel reason from the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SubscriptionCancelSurveyResult
constructor
A new instance of SubscriptionCancelSurveyResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SubscriptionCancelSurveyResult
Returns a new instance of SubscriptionCancelSurveyResult.
1432 1433 1434 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1432 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cancel_survey_reason ⇒ Fixnum
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
1424 1425 1426 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1424 def cancel_survey_reason @cancel_survey_reason end |
#user_input_cancel_reason ⇒ String
The customized input cancel reason from the user. Only present when
cancelReason is 0.
Corresponds to the JSON property userInputCancelReason
1430 1431 1432 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1430 def user_input_cancel_reason @user_input_cancel_reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1437 1438 1439 1440 |
# File 'generated/google/apis/androidpublisher_v3/classes.rb', line 1437 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 |