Module: JPSClient::API::Store
- Included in:
- Client
- Defined in:
- lib/jpsclient/api/store.rb
Overview
Store 相关 API 自动生成的模块,处理 store 相关接口
Instance Method Summary collapse
-
#create_application(params: {}) ⇒ Hash
Create Application.
Instance Method Details
#create_application(params: {}) ⇒ Hash
Create Application
11 12 13 14 15 16 17 18 |
# File 'lib/jpsclient/api/store.rb', line 11 def create_application(params: {}) config = @request_config && @request_config["store_application"] raise JPSClient::ExceptionError, "Missing config for store_application" unless config && config["url"] path = config["url"] return request_with_auth(:post, path, body: params) end |