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.



1311
1312
1313
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1311

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



1304
1305
1306
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1304

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



1309
1310
1311
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1309

def user_comment
  @user_comment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1316
1317
1318
1319
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 1316

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