class Spaceship::Tunes::DeveloperResponse
Attributes
application[RW]
id[R]
last_modified[R]
response[R]
review_id[RW]
state[R]
Public Instance Methods
create!(text)
click to toggle source
# File lib/fastlane/plugin/devresponse/patches/spaceship/tunes/app_ratings.rb, line 30 def create!(text) client.create_developer_response!(app_id: application.apple_id, platform: application.platform, review_id: review_id, response: text) end
update!(text)
click to toggle source
# File lib/fastlane/plugin/devresponse/patches/spaceship/tunes/app_ratings.rb, line 34 def update!(text) client.update_developer_response!(app_id: application.apple_id, platform: application.platform, review_id: review_id, response_id: id, response: text) end