Class: Google::Apis::AndroidpublisherV3::Comment

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

An entry of conversation between user and developer.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Comment

Returns a new instance of Comment.



2122
2123
2124
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2122

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

Instance Attribute Details

#developer_commentGoogle::Apis::AndroidpublisherV3::DeveloperComment

Developer entry from conversation between user and developer. Corresponds to the JSON property developerComment



2115
2116
2117
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2115

def developer_comment
  @developer_comment
end

#user_commentGoogle::Apis::AndroidpublisherV3::UserComment

User entry from conversation between user and developer. Corresponds to the JSON property userComment



2120
2121
2122
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2120

def user_comment
  @user_comment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2127
2128
2129
2130
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2127

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