Module: AppStoreConnectApi::Domain::AppCategories

Included in:
AppStoreConnectApi::Domain
Defined in:
lib/app_store_connect_api/domain/app_categories.rb

Instance Method Summary collapse

Instance Method Details

#app_categories(options = {}) ⇒ Object



7
8
9
# File 'lib/app_store_connect_api/domain/app_categories.rb', line 7

def app_categories(options = {})
  get '/v1/appCategories', options
end

#app_category(app_category_id, options = {}) ⇒ Object



12
13
14
# File 'lib/app_store_connect_api/domain/app_categories.rb', line 12

def app_category(app_category_id, options = {})
  get "/v1/appCategories/#{app_category_id}", options
end

#app_category_parent(app_category_id, options = {}) ⇒ Object



22
23
24
# File 'lib/app_store_connect_api/domain/app_categories.rb', line 22

def app_category_parent(app_category_id, options = {})
  get "/v1/appCategories/#{app_category_id}/parent", options
end

#app_category_subcategories(app_category_id, options = {}) ⇒ Object



17
18
19
# File 'lib/app_store_connect_api/domain/app_categories.rb', line 17

def app_category_subcategories(app_category_id, options = {})
  get "/v1/appCategories/#{app_category_id}/subcategories", options
end