Module: AppStoreConnectApi::Domain::AppCategories
- Included in:
- AppStoreConnectApi::Domain
- Defined in:
- lib/app_store_connect_api/domain/app_categories.rb
Instance Method Summary collapse
- #app_categories(options = {}) ⇒ Object
- #app_category(app_category_id, options = {}) ⇒ Object
- #app_category_parent(app_category_id, options = {}) ⇒ Object
- #app_category_subcategories(app_category_id, options = {}) ⇒ Object
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( = {}) get '/v1/appCategories', 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, = {}) get "/v1/appCategories/#{app_category_id}", 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, = {}) get "/v1/appCategories/#{app_category_id}/parent", 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, = {}) get "/v1/appCategories/#{app_category_id}/subcategories", end |