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,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::AppmarketapiCategory
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCategory' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCategory.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCategory' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCategory' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCategory)
|
|
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::AppmarketapiCreateApplicationRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCreateApplicationRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCreateApplicationRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCreateApplicationRequest' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCreateApplicationRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCreateApplicationRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "developer_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
|
+
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::AppmarketapiCreateApplicationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCreateApplicationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCreateApplicationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCreateApplicationResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCreateApplicationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCreateApplicationResponse)
|
|
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_secret"' 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,59 @@
|
|
|
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::AppmarketapiCreateDeveloperRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCreateDeveloperRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCreateDeveloperRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCreateDeveloperRequest' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCreateDeveloperRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCreateDeveloperRequest)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "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 "name"' 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 "support_url"' 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 "support_email"' 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
|
+
end
|
|
@@ -0,0 +1,59 @@
|
|
|
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::AppmarketapiCreateDeveloperResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCreateDeveloperResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCreateDeveloperResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCreateDeveloperResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCreateDeveloperResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCreateDeveloperResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "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 "name"' 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 "support_url"' 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 "support_email"' 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
|
+
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::AppmarketapiCurrentApplicationMode
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiCurrentApplicationMode' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiCurrentApplicationMode.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiCurrentApplicationMode' do
|
|
31
|
+
it 'should create an instance of AppmarketapiCurrentApplicationMode' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiCurrentApplicationMode)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
describe 'test attribute "mode"' 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,53 @@
|
|
|
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::AppmarketapiDeauthorizeApplicationRequest
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiDeauthorizeApplicationRequest' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiDeauthorizeApplicationRequest.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiDeauthorizeApplicationRequest' do
|
|
31
|
+
it 'should create an instance of AppmarketapiDeauthorizeApplicationRequest' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiDeauthorizeApplicationRequest)
|
|
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 "user_id"' 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 "user_token"' 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
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
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::AppmarketapiDeauthorizeApplicationResponse
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiDeauthorizeApplicationResponse' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiDeauthorizeApplicationResponse.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiDeauthorizeApplicationResponse' do
|
|
31
|
+
it 'should create an instance of AppmarketapiDeauthorizeApplicationResponse' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiDeauthorizeApplicationResponse)
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1,53 @@
|
|
|
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::AppmarketapiDeveloper
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiDeveloper' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiDeveloper.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiDeveloper' do
|
|
31
|
+
it 'should create an instance of AppmarketapiDeveloper' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiDeveloper)
|
|
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 "url"' 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 "email"' 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
|
+
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::AppmarketapiExtendedApplication
|
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe 'AppmarketapiExtendedApplication' do
|
|
21
|
+
before do
|
|
22
|
+
# run before each test
|
|
23
|
+
@instance = Appmarketapi::AppmarketapiExtendedApplication.new
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
after do
|
|
27
|
+
# run after each test
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
describe 'test an instance of AppmarketapiExtendedApplication' do
|
|
31
|
+
it 'should create an instance of AppmarketapiExtendedApplication' do
|
|
32
|
+
expect(@instance).to be_instance_of(Appmarketapi::AppmarketapiExtendedApplication)
|
|
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
|