appmarketapi-rest 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +7 -0
- data/README.md +126 -0
- data/Rakefile +8 -0
- data/appmarketapi-rest.gemspec +45 -0
- data/docs/AppMarketAPIApi.md +388 -0
- data/docs/AppmarketapiApplication.md +22 -0
- data/docs/AppmarketapiApplicationCategories.md +8 -0
- data/docs/AppmarketapiApplicationFlowImages.md +8 -0
- data/docs/AppmarketapiApplicationIcon.md +8 -0
- data/docs/AppmarketapiApplicationMode.md +7 -0
- data/docs/AppmarketapiApplicationPromotion.md +8 -0
- data/docs/AppmarketapiApplicationSupportedPlatforms.md +8 -0
- data/docs/AppmarketapiApplicationTestUsers.md +8 -0
- data/docs/AppmarketapiAuthorizeApplicationRequest.md +11 -0
- data/docs/AppmarketapiAuthorizeApplicationResponse.md +8 -0
- data/docs/AppmarketapiCategory.md +8 -0
- data/docs/AppmarketapiCreateApplicationRequest.md +9 -0
- data/docs/AppmarketapiCreateApplicationResponse.md +9 -0
- data/docs/AppmarketapiCreateDeveloperRequest.md +11 -0
- data/docs/AppmarketapiCreateDeveloperResponse.md +11 -0
- data/docs/AppmarketapiCurrentApplicationMode.md +8 -0
- data/docs/AppmarketapiDeauthorizeApplicationRequest.md +10 -0
- data/docs/AppmarketapiDeauthorizeApplicationResponse.md +7 -0
- data/docs/AppmarketapiDeveloper.md +10 -0
- data/docs/AppmarketapiExtendedApplication.md +9 -0
- data/docs/AppmarketapiFlowImage.md +9 -0
- data/docs/AppmarketapiGetApplicationIdResponse.md +8 -0
- data/docs/AppmarketapiGetApplicationResponse.md +9 -0
- data/docs/AppmarketapiGetApplicationsResponse.md +8 -0
- data/docs/AppmarketapiPlatform.md +8 -0
- data/docs/AppmarketapiSectionError.md +9 -0
- data/docs/AppmarketapiUpdateApplicationMetadata.md +14 -0
- data/docs/AppmarketapiUpdateApplicationRequest.md +16 -0
- data/docs/AppmarketapiUpdateApplicationResponse.md +17 -0
- data/docs/AppmarketapiUser.md +9 -0
- data/git_push.sh +55 -0
- data/lib/appmarketapi-rest.rb +70 -0
- data/lib/appmarketapi-rest/api/app_market_api_api.rb +450 -0
- data/lib/appmarketapi-rest/api_client.rb +388 -0
- data/lib/appmarketapi-rest/api_error.rb +38 -0
- data/lib/appmarketapi-rest/configuration.rb +202 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application.rb +317 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_categories.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_flow_images.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_icon.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_mode.rb +32 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_promotion.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_supported_platforms.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_application_test_users.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_authorize_application_request.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_authorize_application_response.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_category.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_application_request.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_application_response.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_developer_request.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_create_developer_response.rb +210 -0
- data/lib/appmarketapi-rest/models/appmarketapi_current_application_mode.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_deauthorize_application_request.rb +201 -0
- data/lib/appmarketapi-rest/models/appmarketapi_deauthorize_application_response.rb +174 -0
- data/lib/appmarketapi-rest/models/appmarketapi_developer.rb +201 -0
- data/lib/appmarketapi-rest/models/appmarketapi_extended_application.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_flow_image.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_application_id_response.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_application_response.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_get_applications_response.rb +185 -0
- data/lib/appmarketapi-rest/models/appmarketapi_platform.rb +183 -0
- data/lib/appmarketapi-rest/models/appmarketapi_section_error.rb +192 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_metadata.rb +237 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_request.rb +255 -0
- data/lib/appmarketapi-rest/models/appmarketapi_update_application_response.rb +266 -0
- data/lib/appmarketapi-rest/models/appmarketapi_user.rb +194 -0
- data/lib/appmarketapi-rest/version.rb +15 -0
- data/spec/api/app_market_api_api_spec.rb +122 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/appmarketapi_application_categories_spec.rb +41 -0
- data/spec/models/appmarketapi_application_flow_images_spec.rb +41 -0
- data/spec/models/appmarketapi_application_icon_spec.rb +41 -0
- data/spec/models/appmarketapi_application_mode_spec.rb +35 -0
- data/spec/models/appmarketapi_application_promotion_spec.rb +41 -0
- data/spec/models/appmarketapi_application_spec.rb +125 -0
- data/spec/models/appmarketapi_application_supported_platforms_spec.rb +41 -0
- data/spec/models/appmarketapi_application_test_users_spec.rb +41 -0
- data/spec/models/appmarketapi_authorize_application_request_spec.rb +59 -0
- data/spec/models/appmarketapi_authorize_application_response_spec.rb +41 -0
- data/spec/models/appmarketapi_category_spec.rb +41 -0
- data/spec/models/appmarketapi_create_application_request_spec.rb +47 -0
- data/spec/models/appmarketapi_create_application_response_spec.rb +47 -0
- data/spec/models/appmarketapi_create_developer_request_spec.rb +59 -0
- data/spec/models/appmarketapi_create_developer_response_spec.rb +59 -0
- data/spec/models/appmarketapi_current_application_mode_spec.rb +41 -0
- data/spec/models/appmarketapi_deauthorize_application_request_spec.rb +53 -0
- data/spec/models/appmarketapi_deauthorize_application_response_spec.rb +35 -0
- data/spec/models/appmarketapi_developer_spec.rb +53 -0
- data/spec/models/appmarketapi_extended_application_spec.rb +47 -0
- data/spec/models/appmarketapi_flow_image_spec.rb +47 -0
- data/spec/models/appmarketapi_get_application_id_response_spec.rb +41 -0
- data/spec/models/appmarketapi_get_application_response_spec.rb +47 -0
- data/spec/models/appmarketapi_get_applications_response_spec.rb +41 -0
- data/spec/models/appmarketapi_platform_spec.rb +41 -0
- data/spec/models/appmarketapi_section_error_spec.rb +47 -0
- data/spec/models/appmarketapi_update_application_metadata_spec.rb +77 -0
- data/spec/models/appmarketapi_update_application_request_spec.rb +89 -0
- data/spec/models/appmarketapi_update_application_response_spec.rb +95 -0
- data/spec/models/appmarketapi_user_spec.rb +47 -0
- data/spec/spec_helper.rb +111 -0
- metadata +364 -0
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiFlowImage
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiFlowImage' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiFlowImage.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiFlowImage' do
|
|
31
|
+
it 'should create an instance of AppmarketapiFlowImage' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiFlowImage)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "url"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "order"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiGetApplicationIdResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiGetApplicationIdResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiGetApplicationIdResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiGetApplicationIdResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiGetApplicationIdResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiGetApplicationIdResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "application_id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiGetApplicationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiGetApplicationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiGetApplicationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiGetApplicationResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiGetApplicationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiGetApplicationResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "application"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "user"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiGetApplicationsResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiGetApplicationsResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiGetApplicationsResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiGetApplicationsResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiGetApplicationsResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiGetApplicationsResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "applications"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiPlatform
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiPlatform' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiPlatform.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiPlatform' do
|
|
31
|
+
it 'should create an instance of AppmarketapiPlatform' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiPlatform)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "name"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
end
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiSectionError
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiSectionError' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiSectionError.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiSectionError' do
|
|
31
|
+
it 'should create an instance of AppmarketapiSectionError' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiSectionError)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "section"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "error"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
end
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiUpdateApplicationMetadata
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiUpdateApplicationMetadata' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiUpdateApplicationMetadata.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiUpdateApplicationMetadata' do
|
|
31
|
+
it 'should create an instance of AppmarketapiUpdateApplicationMetadata' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiUpdateApplicationMetadata)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "name"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "short_description"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "long_description"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "image_url"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "support_url"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "support_email"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "redirect_url"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
end
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiUpdateApplicationRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiUpdateApplicationRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiUpdateApplicationRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiUpdateApplicationRequest' do
|
|
31
|
+
it 'should create an instance of AppmarketapiUpdateApplicationRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiUpdateApplicationRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "application_id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "application_metadata"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "application_icon"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "application_promotion"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "application_mode"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "application_categories"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "application_flow_images"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "application_test_users"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "application_supported_platforms"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
end
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#appmarketapi.proto
|
|
3
|
+
|
|
4
|
+
#No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: version not set
|
|
7
|
+
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Appmarketapi::AppmarketapiUpdateApplicationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiUpdateApplicationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiUpdateApplicationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiUpdateApplicationResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiUpdateApplicationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiUpdateApplicationResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "application_id"' do
|
|
36
|
+
it 'should work' do
|
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
describe 'test attribute "application_metadata"' do
|
|
42
|
+
it 'should work' do
|
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
describe 'test attribute "application_icon"' do
|
|
48
|
+
it 'should work' do
|
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
50
|
+
end
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
describe 'test attribute "application_promotion"' do
|
|
54
|
+
it 'should work' do
|
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
describe 'test attribute "application_mode"' do
|
|
60
|
+
it 'should work' do
|
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe 'test attribute "application_categories"' do
|
|
66
|
+
it 'should work' do
|
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
describe 'test attribute "application_flow_images"' do
|
|
72
|
+
it 'should work' do
|
|
73
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
describe 'test attribute "application_test_users"' do
|
|
78
|
+
it 'should work' do
|
|
79
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
describe 'test attribute "application_supported_platforms"' do
|
|
84
|
+
it 'should work' do
|
|
85
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
86
|
+
end
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
describe 'test attribute "errors"' do
|
|
90
|
+
it 'should work' do
|
|
91
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
end
|