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.



2494
2495
2496
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2494

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



2487
2488
2489
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2487

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



2492
2493
2494
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2492

def user_comment
  @user_comment
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2499
2500
2501
2502
# File 'lib/google/apis/androidpublisher_v3/classes.rb', line 2499

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