class Spaceship::ConnectAPI::AppStoreReviewDetail

Attributes

app_store_review_attachments[RW]
contact_email[RW]
contact_first_name[RW]
contact_last_name[RW]
contact_phone[RW]
demo_account_name[RW]
demo_account_password[RW]
demo_account_required[RW]
notes[RW]

Public Class Methods

type() click to toggle source
# File spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb, line 33
def self.type
  return "appStoreReviewDetails"
end

Public Instance Methods

update(client: nil, attributes: nil) click to toggle source

API

# File spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb, line 41
def update(client: nil, attributes: nil)
  client ||= Spaceship::ConnectAPI
  attributes = reverse_attr_mapping(attributes)
  return client.patch_app_store_review_detail(app_store_review_detail_id: id, attributes: attributes)
end
upload_attachment(client: nil, path: nil) click to toggle source
# File spaceship/lib/spaceship/connect_api/models/app_store_review_detail.rb, line 47
def upload_attachment(client: nil, path: nil)
  client ||= Spaceship::ConnectAPI
  return client::AppStoreReviewAttachment.create(app_store_review_detail_id: id, path: path)
end