class Google::Apis::AndroidpublisherV3::Comment

An entry of conversation between user and developer.

Attributes

developer_comment[RW]

Developer entry from conversation between user and developer. Corresponds to the JSON property `developerComment` @return [Google::Apis::AndroidpublisherV3::DeveloperComment]

user_comment[RW]

User entry from conversation between user and developer. Corresponds to the JSON property `userComment` @return [Google::Apis::AndroidpublisherV3::UserComment]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/androidpublisher_v3/classes.rb, line 282
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/androidpublisher_v3/classes.rb, line 287
def update!(**args)
  @developer_comment = args[:developer_comment] if args.key?(:developer_comment)
  @user_comment = args[:user_comment] if args.key?(:user_comment)
end