bullet_train_test 1.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +9 -0
  3. data/README.md +123 -0
  4. data/Rakefile +10 -0
  5. data/bullet_train_test.gemspec +38 -0
  6. data/docs/ApiV1GoalSerializer.md +18 -0
  7. data/docs/ApiV1GoalSerializerData.md +24 -0
  8. data/docs/ApiV1GoalSerializerDataAttributes.md +26 -0
  9. data/docs/ApiV1GoalSerializerDataRelationships.md +18 -0
  10. data/docs/ApiV1ProjectSerializer.md +18 -0
  11. data/docs/ApiV1ProjectSerializerData.md +24 -0
  12. data/docs/ApiV1ProjectSerializerDataAttributes.md +32 -0
  13. data/docs/ApiV1ProjectsTagSerializer.md +18 -0
  14. data/docs/ApiV1ProjectsTagSerializerData.md +24 -0
  15. data/docs/ApiV1ProjectsTagSerializerDataAttributes.md +26 -0
  16. data/docs/ApiV1ProjectsTagSerializerDataRelationships.md +18 -0
  17. data/docs/ApiV1ProjectsTagSerializerDataRelationshipsTeam.md +18 -0
  18. data/docs/ApiV1ProjectsTagSerializerDataRelationshipsTeamData.md +20 -0
  19. data/docs/ApiV1TeamSerializer.md +18 -0
  20. data/docs/ApiV1TeamSerializerData.md +24 -0
  21. data/docs/ApiV1TeamSerializerDataAttributes.md +28 -0
  22. data/docs/ApiV1TeamSerializerDataRelationships.md +18 -0
  23. data/docs/ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts.md +18 -0
  24. data/docs/GoalsApi.md +205 -0
  25. data/docs/MeApi.md +66 -0
  26. data/docs/ProjectsApi.md +472 -0
  27. data/docs/TeamsApi.md +628 -0
  28. data/git_push.sh +57 -0
  29. data/lib/bullet_train_test/api/goals_api.rb +210 -0
  30. data/lib/bullet_train_test/api/me_api.rb +73 -0
  31. data/lib/bullet_train_test/api/projects_api.rb +466 -0
  32. data/lib/bullet_train_test/api/teams_api.rb +611 -0
  33. data/lib/bullet_train_test/api_client.rb +389 -0
  34. data/lib/bullet_train_test/api_error.rb +57 -0
  35. data/lib/bullet_train_test/configuration.rb +271 -0
  36. data/lib/bullet_train_test/models/api_v1_goal_serializer.rb +219 -0
  37. data/lib/bullet_train_test/models/api_v1_goal_serializer_data.rb +245 -0
  38. data/lib/bullet_train_test/models/api_v1_goal_serializer_data_attributes.rb +254 -0
  39. data/lib/bullet_train_test/models/api_v1_goal_serializer_data_relationships.rb +218 -0
  40. data/lib/bullet_train_test/models/api_v1_project_serializer.rb +219 -0
  41. data/lib/bullet_train_test/models/api_v1_project_serializer_data.rb +245 -0
  42. data/lib/bullet_train_test/models/api_v1_project_serializer_data_attributes.rb +281 -0
  43. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer.rb +219 -0
  44. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer_data.rb +245 -0
  45. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer_data_attributes.rb +254 -0
  46. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer_data_relationships.rb +218 -0
  47. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer_data_relationships_team.rb +218 -0
  48. data/lib/bullet_train_test/models/api_v1_projects_tag_serializer_data_relationships_team_data.rb +227 -0
  49. data/lib/bullet_train_test/models/api_v1_team_serializer.rb +219 -0
  50. data/lib/bullet_train_test/models/api_v1_team_serializer_data.rb +245 -0
  51. data/lib/bullet_train_test/models/api_v1_team_serializer_data_attributes.rb +263 -0
  52. data/lib/bullet_train_test/models/api_v1_team_serializer_data_relationships.rb +218 -0
  53. data/lib/bullet_train_test/models/api_v1_team_serializer_data_relationships_scaffolding_absolutely_abstract_creative_concepts.rb +220 -0
  54. data/lib/bullet_train_test/version.rb +15 -0
  55. data/lib/bullet_train_test.rb +61 -0
  56. data/spec/api/goals_api_spec.rb +69 -0
  57. data/spec/api/me_api_spec.rb +44 -0
  58. data/spec/api/projects_api_spec.rb +115 -0
  59. data/spec/api/teams_api_spec.rb +144 -0
  60. data/spec/api_client_spec.rb +226 -0
  61. data/spec/configuration_spec.rb +42 -0
  62. data/spec/models/api_v1_goal_serializer_data_attributes_spec.rb +58 -0
  63. data/spec/models/api_v1_goal_serializer_data_relationships_spec.rb +34 -0
  64. data/spec/models/api_v1_goal_serializer_data_spec.rb +52 -0
  65. data/spec/models/api_v1_goal_serializer_spec.rb +34 -0
  66. data/spec/models/api_v1_project_serializer_data_attributes_spec.rb +76 -0
  67. data/spec/models/api_v1_project_serializer_data_spec.rb +52 -0
  68. data/spec/models/api_v1_project_serializer_spec.rb +34 -0
  69. data/spec/models/api_v1_projects_tag_serializer_data_attributes_spec.rb +58 -0
  70. data/spec/models/api_v1_projects_tag_serializer_data_relationships_spec.rb +34 -0
  71. data/spec/models/api_v1_projects_tag_serializer_data_relationships_team_data_spec.rb +40 -0
  72. data/spec/models/api_v1_projects_tag_serializer_data_relationships_team_spec.rb +34 -0
  73. data/spec/models/api_v1_projects_tag_serializer_data_spec.rb +52 -0
  74. data/spec/models/api_v1_projects_tag_serializer_spec.rb +34 -0
  75. data/spec/models/api_v1_team_serializer_data_attributes_spec.rb +64 -0
  76. data/spec/models/api_v1_team_serializer_data_relationships_scaffolding_absolutely_abstract_creative_concepts_spec.rb +34 -0
  77. data/spec/models/api_v1_team_serializer_data_relationships_spec.rb +34 -0
  78. data/spec/models/api_v1_team_serializer_data_spec.rb +52 -0
  79. data/spec/models/api_v1_team_serializer_spec.rb +34 -0
  80. data/spec/spec_helper.rb +111 -0
  81. metadata +187 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 22cc055be83d7902aee65fd30455f513a80279d092d7b447bc51bf5f586fe08c
4
+ data.tar.gz: 7b8140bc989cc447eedb2a59eb0ce2a97c75294bd208bcde6cef1a52b5fba388
5
+ SHA512:
6
+ metadata.gz: 6523b09536bb1c6636604e9989e6c3767197e182510e72b5e7f00928deeacc103a50f9922d34a10e4c6d7e009d5d5c79bf3681fefefc79ffd40b82ceacc2259d
7
+ data.tar.gz: 69530bd558ed77f3aed7b7d5868bc41f992f6f4efeae46d8c2c48111ca53de2da39073f5be1d2a0926613ff3ae44a700cb81c95ecb0935459c282625e617be4f
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gemspec
4
+
5
+ group :development, :test do
6
+ gem 'rake', '~> 13.0.1'
7
+ gem 'pry-byebug'
8
+ gem 'rubocop', '~> 0.66.0'
9
+ end
data/README.md ADDED
@@ -0,0 +1,123 @@
1
+ # bullet_train_test
2
+
3
+ BulletTrainTest - the Ruby gem for the Bullet Train Test
4
+
5
+ You can update this description in `config/locales/en/application.en.yml`.
6
+
7
+ This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
+
9
+ - API version: 1.0
10
+ - Package version: 1.0.6
11
+ - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
+
13
+ ## Installation
14
+
15
+ ### Build a gem
16
+
17
+ To build the Ruby code into a gem:
18
+
19
+ ```shell
20
+ gem build bullet_train_test.gemspec
21
+ ```
22
+
23
+ Then either install the gem locally:
24
+
25
+ ```shell
26
+ gem install ./bullet_train_test-1.0.6.gem
27
+ ```
28
+
29
+ (for development, run `gem install --dev ./bullet_train_test-1.0.6.gem` to install the development dependencies)
30
+
31
+ or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
+
33
+ Finally add this to the Gemfile:
34
+
35
+ gem 'bullet_train_test', '~> 1.0.6'
36
+
37
+ ### Install from Git
38
+
39
+ If the Ruby gem is hosted at a git repository: https:///YOUR_GIT_USERNAME/YOUR_GIT_REPO, then add the following in the Gemfile:
40
+
41
+ gem 'bullet_train_test', :git => 'https:///YOUR_GIT_USERNAME/YOUR_GIT_REPO.git'
42
+
43
+ ### Include the Ruby code directly
44
+
45
+ Include the Ruby code directly using `-I` as follows:
46
+
47
+ ```shell
48
+ ruby -Ilib script.rb
49
+ ```
50
+
51
+ ## Getting Started
52
+
53
+ Please follow the [installation](#installation) procedure and then run the following code:
54
+
55
+ ```ruby
56
+ # Load the gem
57
+ require 'bullet_train_test'
58
+
59
+ api_instance = BulletTrainTest::GoalsApi.new
60
+ id = 56 # Integer | Goal ID
61
+
62
+ begin
63
+ api_instance.delete_goals_id(id)
64
+ rescue BulletTrainTest::ApiError => e
65
+ puts "Exception when calling GoalsApi->delete_goals_id: #{e}"
66
+ end
67
+
68
+ ```
69
+
70
+ ## Documentation for API Endpoints
71
+
72
+ All URIs are relative to *https://bullettrainapi.eu.ngrok.io/api/v1*
73
+
74
+ Class | Method | HTTP request | Description
75
+ ------------ | ------------- | ------------- | -------------
76
+ *BulletTrainTest::GoalsApi* | [**delete_goals_id**](docs/GoalsApi.md#delete_goals_id) | **DELETE** /goals/{id} |
77
+ *BulletTrainTest::GoalsApi* | [**get_goals_id**](docs/GoalsApi.md#get_goals_id) | **GET** /goals/{id} |
78
+ *BulletTrainTest::GoalsApi* | [**put_goals_id**](docs/GoalsApi.md#put_goals_id) | **PUT** /goals/{id} |
79
+ *BulletTrainTest::MeApi* | [**get_me**](docs/MeApi.md#get_me) | **GET** /me |
80
+ *BulletTrainTest::ProjectsApi* | [**delete_projects_id**](docs/ProjectsApi.md#delete_projects_id) | **DELETE** /projects/{id} |
81
+ *BulletTrainTest::ProjectsApi* | [**delete_projects_tags_id**](docs/ProjectsApi.md#delete_projects_tags_id) | **DELETE** /projects/tags/{id} |
82
+ *BulletTrainTest::ProjectsApi* | [**get_projects_id**](docs/ProjectsApi.md#get_projects_id) | **GET** /projects/{id} |
83
+ *BulletTrainTest::ProjectsApi* | [**get_projects_tags_id**](docs/ProjectsApi.md#get_projects_tags_id) | **GET** /projects/tags/{id} |
84
+ *BulletTrainTest::ProjectsApi* | [**post_projects_project_id_goals**](docs/ProjectsApi.md#post_projects_project_id_goals) | **POST** /projects/{project_id}/goals |
85
+ *BulletTrainTest::ProjectsApi* | [**put_projects_id**](docs/ProjectsApi.md#put_projects_id) | **PUT** /projects/{id} |
86
+ *BulletTrainTest::ProjectsApi* | [**put_projects_tags_id**](docs/ProjectsApi.md#put_projects_tags_id) | **PUT** /projects/tags/{id} |
87
+ *BulletTrainTest::TeamsApi* | [**get_teams**](docs/TeamsApi.md#get_teams) | **GET** /teams |
88
+ *BulletTrainTest::TeamsApi* | [**get_teams_id**](docs/TeamsApi.md#get_teams_id) | **GET** /teams/{id} |
89
+ *BulletTrainTest::TeamsApi* | [**get_teams_team_id_projects**](docs/TeamsApi.md#get_teams_team_id_projects) | **GET** /teams/{team_id}/projects |
90
+ *BulletTrainTest::TeamsApi* | [**get_teams_team_id_projects_tags**](docs/TeamsApi.md#get_teams_team_id_projects_tags) | **GET** /teams/{team_id}/projects/tags |
91
+ *BulletTrainTest::TeamsApi* | [**get_teams_team_id_projects_three**](docs/TeamsApi.md#get_teams_team_id_projects_three) | **GET** /teams/{team_id}/projects/three |
92
+ *BulletTrainTest::TeamsApi* | [**post_teams**](docs/TeamsApi.md#post_teams) | **POST** /teams |
93
+ *BulletTrainTest::TeamsApi* | [**post_teams_team_id_projects**](docs/TeamsApi.md#post_teams_team_id_projects) | **POST** /teams/{team_id}/projects |
94
+ *BulletTrainTest::TeamsApi* | [**post_teams_team_id_projects_tags**](docs/TeamsApi.md#post_teams_team_id_projects_tags) | **POST** /teams/{team_id}/projects/tags |
95
+ *BulletTrainTest::TeamsApi* | [**put_teams_id**](docs/TeamsApi.md#put_teams_id) | **PUT** /teams/{id} |
96
+
97
+
98
+ ## Documentation for Models
99
+
100
+ - [BulletTrainTest::ApiV1GoalSerializer](docs/ApiV1GoalSerializer.md)
101
+ - [BulletTrainTest::ApiV1GoalSerializerData](docs/ApiV1GoalSerializerData.md)
102
+ - [BulletTrainTest::ApiV1GoalSerializerDataAttributes](docs/ApiV1GoalSerializerDataAttributes.md)
103
+ - [BulletTrainTest::ApiV1GoalSerializerDataRelationships](docs/ApiV1GoalSerializerDataRelationships.md)
104
+ - [BulletTrainTest::ApiV1ProjectSerializer](docs/ApiV1ProjectSerializer.md)
105
+ - [BulletTrainTest::ApiV1ProjectSerializerData](docs/ApiV1ProjectSerializerData.md)
106
+ - [BulletTrainTest::ApiV1ProjectSerializerDataAttributes](docs/ApiV1ProjectSerializerDataAttributes.md)
107
+ - [BulletTrainTest::ApiV1ProjectsTagSerializer](docs/ApiV1ProjectsTagSerializer.md)
108
+ - [BulletTrainTest::ApiV1ProjectsTagSerializerData](docs/ApiV1ProjectsTagSerializerData.md)
109
+ - [BulletTrainTest::ApiV1ProjectsTagSerializerDataAttributes](docs/ApiV1ProjectsTagSerializerDataAttributes.md)
110
+ - [BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationships](docs/ApiV1ProjectsTagSerializerDataRelationships.md)
111
+ - [BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeam](docs/ApiV1ProjectsTagSerializerDataRelationshipsTeam.md)
112
+ - [BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeamData](docs/ApiV1ProjectsTagSerializerDataRelationshipsTeamData.md)
113
+ - [BulletTrainTest::ApiV1TeamSerializer](docs/ApiV1TeamSerializer.md)
114
+ - [BulletTrainTest::ApiV1TeamSerializerData](docs/ApiV1TeamSerializerData.md)
115
+ - [BulletTrainTest::ApiV1TeamSerializerDataAttributes](docs/ApiV1TeamSerializerDataAttributes.md)
116
+ - [BulletTrainTest::ApiV1TeamSerializerDataRelationships](docs/ApiV1TeamSerializerDataRelationships.md)
117
+ - [BulletTrainTest::ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts](docs/ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts.md)
118
+
119
+
120
+ ## Documentation for Authorization
121
+
122
+ All endpoints do not require authorization.
123
+
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ begin
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+ task default: :spec
8
+ rescue LoadError
9
+ # no rspec available
10
+ end
@@ -0,0 +1,38 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ =begin
4
+ #Bullet Train Test
5
+
6
+ #You can update this description in `config/locales/en/application.en.yml`.
7
+
8
+ The version of the OpenAPI document: 1.0
9
+
10
+ Generated by: https://openapi-generator.tech
11
+ OpenAPI Generator version: 5.3.0
12
+
13
+ =end
14
+
15
+ $:.push File.expand_path("../lib", __FILE__)
16
+ require "bullet_train_test/version"
17
+
18
+ Gem::Specification.new do |s|
19
+ s.name = "bullet_train_test"
20
+ s.version = BulletTrainTest::VERSION
21
+ s.platform = Gem::Platform::RUBY
22
+ s.authors = ["OpenAPI-Generator"]
23
+ s.email = [""]
24
+ s.homepage = "https://rubygems.org"
25
+ s.summary = "Bullet Train Test Ruby Gem"
26
+ s.description = "You can update this description in `config/locales/en/application.en.yml`."
27
+ s.license = "Unlicense"
28
+ s.required_ruby_version = ">= 2.4"
29
+
30
+ s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
31
+
32
+ s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
33
+
34
+ s.files = `find *`.split("\n").uniq.sort.select { |f| !f.empty? }
35
+ s.test_files = `find spec/*`.split("\n")
36
+ s.executables = []
37
+ s.require_paths = ["lib"]
38
+ end
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1GoalSerializer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**ApiV1GoalSerializerData**](ApiV1GoalSerializerData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1GoalSerializer.new(
15
+ data: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,24 @@
1
+ # BulletTrainTest::ApiV1GoalSerializerData
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+ | **attributes** | [**ApiV1GoalSerializerDataAttributes**](ApiV1GoalSerializerDataAttributes.md) | | [optional] |
10
+ | **relationships** | [**ApiV1GoalSerializerDataRelationships**](ApiV1GoalSerializerDataRelationships.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'bullet_train_test'
16
+
17
+ instance = BulletTrainTest::ApiV1GoalSerializerData.new(
18
+ id: null,
19
+ type: null,
20
+ attributes: null,
21
+ relationships: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,26 @@
1
+ # BulletTrainTest::ApiV1GoalSerializerDataAttributes
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **project_id** | **Integer** | | [optional] |
9
+ | **description** | **String** | | [optional] |
10
+ | **created_at** | **Time** | | [optional] |
11
+ | **updated_at** | **Time** | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'bullet_train_test'
17
+
18
+ instance = BulletTrainTest::ApiV1GoalSerializerDataAttributes.new(
19
+ id: null,
20
+ project_id: null,
21
+ description: null,
22
+ created_at: null,
23
+ updated_at: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1GoalSerializerDataRelationships
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **project** | [**ApiV1ProjectsTagSerializerDataRelationshipsTeam**](ApiV1ProjectsTagSerializerDataRelationshipsTeam.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1GoalSerializerDataRelationships.new(
15
+ project: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1ProjectSerializer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**ApiV1ProjectSerializerData**](ApiV1ProjectSerializerData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1ProjectSerializer.new(
15
+ data: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,24 @@
1
+ # BulletTrainTest::ApiV1ProjectSerializerData
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+ | **attributes** | [**ApiV1ProjectSerializerDataAttributes**](ApiV1ProjectSerializerDataAttributes.md) | | [optional] |
10
+ | **relationships** | [**ApiV1ProjectsTagSerializerDataRelationships**](ApiV1ProjectsTagSerializerDataRelationships.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'bullet_train_test'
16
+
17
+ instance = BulletTrainTest::ApiV1ProjectSerializerData.new(
18
+ id: null,
19
+ type: null,
20
+ attributes: null,
21
+ relationships: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,32 @@
1
+ # BulletTrainTest::ApiV1ProjectSerializerDataAttributes
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **team_id** | **Integer** | | [optional] |
9
+ | **name** | **String** | | [optional] |
10
+ | **status** | **String** | | [optional] |
11
+ | **lead_id** | **Integer** | | [optional] |
12
+ | **tag_ids** | **String** | | [optional] |
13
+ | **created_at** | **Time** | | [optional] |
14
+ | **updated_at** | **Time** | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'bullet_train_test'
20
+
21
+ instance = BulletTrainTest::ApiV1ProjectSerializerDataAttributes.new(
22
+ id: null,
23
+ team_id: null,
24
+ name: null,
25
+ status: null,
26
+ lead_id: null,
27
+ tag_ids: null,
28
+ created_at: null,
29
+ updated_at: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**ApiV1ProjectsTagSerializerData**](ApiV1ProjectsTagSerializerData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializer.new(
15
+ data: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,24 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializerData
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+ | **attributes** | [**ApiV1ProjectsTagSerializerDataAttributes**](ApiV1ProjectsTagSerializerDataAttributes.md) | | [optional] |
10
+ | **relationships** | [**ApiV1ProjectsTagSerializerDataRelationships**](ApiV1ProjectsTagSerializerDataRelationships.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'bullet_train_test'
16
+
17
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializerData.new(
18
+ id: null,
19
+ type: null,
20
+ attributes: null,
21
+ relationships: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,26 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializerDataAttributes
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **team_id** | **Integer** | | [optional] |
9
+ | **name** | **String** | | [optional] |
10
+ | **created_at** | **Time** | | [optional] |
11
+ | **updated_at** | **Time** | | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'bullet_train_test'
17
+
18
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializerDataAttributes.new(
19
+ id: null,
20
+ team_id: null,
21
+ name: null,
22
+ created_at: null,
23
+ updated_at: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationships
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **team** | [**ApiV1ProjectsTagSerializerDataRelationshipsTeam**](ApiV1ProjectsTagSerializerDataRelationshipsTeam.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationships.new(
15
+ team: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeam
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**ApiV1ProjectsTagSerializerDataRelationshipsTeamData**](ApiV1ProjectsTagSerializerDataRelationshipsTeamData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeam.new(
15
+ data: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,20 @@
1
+ # BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeamData
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'bullet_train_test'
14
+
15
+ instance = BulletTrainTest::ApiV1ProjectsTagSerializerDataRelationshipsTeamData.new(
16
+ id: null,
17
+ type: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1TeamSerializer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**ApiV1TeamSerializerData**](ApiV1TeamSerializerData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1TeamSerializer.new(
15
+ data: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,24 @@
1
+ # BulletTrainTest::ApiV1TeamSerializerData
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **type** | **String** | | [optional] |
9
+ | **attributes** | [**ApiV1TeamSerializerDataAttributes**](ApiV1TeamSerializerDataAttributes.md) | | [optional] |
10
+ | **relationships** | [**ApiV1TeamSerializerDataRelationships**](ApiV1TeamSerializerDataRelationships.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'bullet_train_test'
16
+
17
+ instance = BulletTrainTest::ApiV1TeamSerializerData.new(
18
+ id: null,
19
+ type: null,
20
+ attributes: null,
21
+ relationships: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,28 @@
1
+ # BulletTrainTest::ApiV1TeamSerializerDataAttributes
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **Integer** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **time_zone** | **String** | | [optional] |
10
+ | **locale** | **String** | | [optional] |
11
+ | **created_at** | **Time** | | [optional] |
12
+ | **updated_at** | **Time** | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'bullet_train_test'
18
+
19
+ instance = BulletTrainTest::ApiV1TeamSerializerDataAttributes.new(
20
+ id: null,
21
+ name: null,
22
+ time_zone: null,
23
+ locale: null,
24
+ created_at: null,
25
+ updated_at: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1TeamSerializerDataRelationships
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **scaffolding_absolutely_abstract_creative_concepts** | [**ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts**](ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1TeamSerializerDataRelationships.new(
15
+ scaffolding_absolutely_abstract_creative_concepts: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,18 @@
1
+ # BulletTrainTest::ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **data** | [**Array<ApiV1ProjectsTagSerializerDataRelationshipsTeamData>**](ApiV1ProjectsTagSerializerDataRelationshipsTeamData.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'bullet_train_test'
13
+
14
+ instance = BulletTrainTest::ApiV1TeamSerializerDataRelationshipsScaffoldingAbsolutelyAbstractCreativeConcepts.new(
15
+ data: null
16
+ )
17
+ ```
18
+