agentcat-api 0.0.1 → 0.0.3

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.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +9 -0
  3. data/README.md +101 -16
  4. data/Rakefile +10 -0
  5. data/agentcat-api.gemspec +40 -33
  6. data/docs/AlertsApi.md +141 -0
  7. data/docs/EmailChannelVerifyRequest.md +18 -0
  8. data/docs/EmailChannelVerifyResponse.md +20 -0
  9. data/docs/Error.md +18 -0
  10. data/docs/EventAcceptedResponse.md +18 -0
  11. data/docs/EventsApi.md +81 -0
  12. data/docs/NotificationsApi.md +143 -0
  13. data/docs/PublishEventRequest.md +72 -0
  14. data/docs/QueryTimeout.md +20 -0
  15. data/docs/UnsubscribeRequestRequest.md +18 -0
  16. data/docs/ValidationErrorValue.md +49 -0
  17. data/lib/agentcat-api/api/alerts_api.rb +142 -0
  18. data/lib/agentcat-api/api/events_api.rb +86 -0
  19. data/lib/agentcat-api/api/notifications_api.rb +154 -0
  20. data/lib/agentcat-api/api_client.rb +437 -0
  21. data/lib/agentcat-api/api_error.rb +58 -0
  22. data/lib/agentcat-api/configuration.rb +392 -0
  23. data/lib/agentcat-api/models/email_channel_verify_request.rb +239 -0
  24. data/lib/agentcat-api/models/email_channel_verify_response.rb +263 -0
  25. data/lib/agentcat-api/models/error.rb +237 -0
  26. data/lib/agentcat-api/models/event_accepted_response.rb +222 -0
  27. data/lib/agentcat-api/models/publish_event_request.rb +545 -0
  28. data/lib/agentcat-api/models/query_timeout.rb +287 -0
  29. data/lib/agentcat-api/models/unsubscribe_request_request.rb +239 -0
  30. data/lib/agentcat-api/models/validation_error_value.rb +105 -0
  31. data/lib/agentcat-api/version.rb +15 -0
  32. data/lib/agentcat-api.rb +50 -0
  33. data/spec/api/alerts_api_spec.rb +59 -0
  34. data/spec/api/events_api_spec.rb +47 -0
  35. data/spec/api/notifications_api_spec.rb +60 -0
  36. data/spec/models/email_channel_verify_request_spec.rb +36 -0
  37. data/spec/models/email_channel_verify_response_spec.rb +42 -0
  38. data/spec/models/error_spec.rb +36 -0
  39. data/spec/models/event_accepted_response_spec.rb +36 -0
  40. data/spec/models/publish_event_request_spec.rb +202 -0
  41. data/spec/models/query_timeout_spec.rb +46 -0
  42. data/spec/models/unsubscribe_request_request_spec.rb +36 -0
  43. data/spec/models/validation_error_value_spec.rb +32 -0
  44. data/spec/spec_helper.rb +111 -0
  45. metadata +135 -23
  46. data/LICENSE +0 -21
  47. data/lib/agentcat/api/version.rb +0 -7
  48. data/lib/agentcat/api.rb +0 -30
@@ -0,0 +1,59 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for AgentCatApi::AlertsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'AlertsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = AgentCatApi::AlertsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of AlertsApi' do
30
+ it 'should create an instance of AlertsApi' do
31
+ expect(@api_instance).to be_instance_of(AgentCatApi::AlertsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for unsubscribe_alert_get
36
+ # Show the confirmation page for removing an email address from one alert rule
37
+ # GET, the link in the email, shows a confirmation page and changes nothing, because mail scanners fetch links. POST removes the address from the rule; the page's form and the List-Unsubscribe-Post header both send it. POST is idempotent.
38
+ # @param [Hash] opts the optional parameters
39
+ # @option opts [String] :token
40
+ # @return [String]
41
+ describe 'unsubscribe_alert_get test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
44
+ end
45
+ end
46
+
47
+ # unit tests for unsubscribe_alert_post
48
+ # Remove an email address from one alert rule (List-Unsubscribe-Post and the confirmation form)
49
+ # GET, the link in the email, shows a confirmation page and changes nothing, because mail scanners fetch links. POST removes the address from the rule; the page's form and the List-Unsubscribe-Post header both send it. POST is idempotent.
50
+ # @param [Hash] opts the optional parameters
51
+ # @option opts [String] :token
52
+ # @return [String]
53
+ describe 'unsubscribe_alert_post test' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,47 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for AgentCatApi::EventsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'EventsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = AgentCatApi::EventsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of EventsApi' do
30
+ it 'should create an instance of EventsApi' do
31
+ expect(@api_instance).to be_instance_of(AgentCatApi::EventsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for publish_event
36
+ # Publish analytics event
37
+ # Submit analytics events for a project. Returns immediately with 202 Accepted.
38
+ # @param [Hash] opts the optional parameters
39
+ # @option opts [PublishEventRequest] :publish_event_request
40
+ # @return [EventAcceptedResponse]
41
+ describe 'publish_event test' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
44
+ end
45
+ end
46
+
47
+ end
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+
16
+ # Unit tests for AgentCatApi::NotificationsApi
17
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
18
+ # Please update as you see appropriate
19
+ describe 'NotificationsApi' do
20
+ before do
21
+ # run before each test
22
+ @api_instance = AgentCatApi::NotificationsApi.new
23
+ end
24
+
25
+ after do
26
+ # run after each test
27
+ end
28
+
29
+ describe 'test an instance of NotificationsApi' do
30
+ it 'should create an instance of NotificationsApi' do
31
+ expect(@api_instance).to be_instance_of(AgentCatApi::NotificationsApi)
32
+ end
33
+ end
34
+
35
+ # unit tests for unsubscribe_notification
36
+ # Disable an email notification type for the token's user
37
+ # Anonymous endpoint reached from email unsubscribe links and the List-Unsubscribe header POST. The token encodes the user and the notification type to disable. Response bodies are plain text.
38
+ # @param [Hash] opts the optional parameters
39
+ # @option opts [String] :token Signed unsubscribe token. May also be passed in the request body.
40
+ # @option opts [UnsubscribeRequestRequest] :unsubscribe_request_request
41
+ # @return [String]
42
+ describe 'unsubscribe_notification test' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ # unit tests for verify_email_channel
49
+ # Activate an email channel from its verification link
50
+ # @param [Hash] opts the optional parameters
51
+ # @option opts [String] :token
52
+ # @option opts [EmailChannelVerifyRequest] :email_channel_verify_request
53
+ # @return [EmailChannelVerifyResponse]
54
+ describe 'verify_email_channel test' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::EmailChannelVerifyRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::EmailChannelVerifyRequest do
21
+ let(:instance) { AgentCatApi::EmailChannelVerifyRequest.new }
22
+
23
+ describe 'test an instance of EmailChannelVerifyRequest' do
24
+ it 'should create an instance of EmailChannelVerifyRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::EmailChannelVerifyRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "token"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::EmailChannelVerifyResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::EmailChannelVerifyResponse do
21
+ let(:instance) { AgentCatApi::EmailChannelVerifyResponse.new }
22
+
23
+ describe 'test an instance of EmailChannelVerifyResponse' do
24
+ it 'should create an instance of EmailChannelVerifyResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::EmailChannelVerifyResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "success"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "channel_id"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::Error
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::Error do
21
+ let(:instance) { AgentCatApi::Error.new }
22
+
23
+ describe 'test an instance of Error' do
24
+ it 'should create an instance of Error' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::Error)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "detail"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::EventAcceptedResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::EventAcceptedResponse do
21
+ let(:instance) { AgentCatApi::EventAcceptedResponse.new }
22
+
23
+ describe 'test an instance of EventAcceptedResponse' do
24
+ it 'should create an instance of EventAcceptedResponse' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::EventAcceptedResponse)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "status"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,202 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::PublishEventRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::PublishEventRequest do
21
+ let(:instance) { AgentCatApi::PublishEventRequest.new }
22
+
23
+ describe 'test an instance of PublishEventRequest' do
24
+ it 'should create an instance of PublishEventRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::PublishEventRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "id"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "project_id"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "session_id"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "actor_id"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "event_id"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "event_type"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["mcp:ping", "mcp:initialize", "mcp:completion/complete", "mcp:logging/setLevel", "mcp:prompts/get", "mcp:prompts/list", "mcp:resources/list", "mcp:resources/templates/list", "mcp:resources/read", "mcp:resources/subscribe", "mcp:resources/unsubscribe", "mcp:tools/call", "mcp:tools/list", "mcp:tasks/get", "mcp:tasks/result", "mcp:tasks/list", "mcp:tasks/cancel", "agentcat:identify"])
64
+ # validator.allowable_values.each do |value|
65
+ # expect { instance.event_type = value }.not_to raise_error
66
+ # end
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "is_error"' do
71
+ it 'should work' do
72
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "error"' do
77
+ it 'should work' do
78
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "resource_name"' do
83
+ it 'should work' do
84
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "duration"' do
89
+ it 'should work' do
90
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
91
+ end
92
+ end
93
+
94
+ describe 'test attribute "input_tokens"' do
95
+ it 'should work' do
96
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
97
+ end
98
+ end
99
+
100
+ describe 'test attribute "output_tokens"' do
101
+ it 'should work' do
102
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
103
+ end
104
+ end
105
+
106
+ describe 'test attribute "timestamp"' do
107
+ it 'should work' do
108
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
109
+ end
110
+ end
111
+
112
+ describe 'test attribute "user_intent"' do
113
+ it 'should work' do
114
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
115
+ end
116
+ end
117
+
118
+ describe 'test attribute "parameters"' do
119
+ it 'should work' do
120
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
121
+ end
122
+ end
123
+
124
+ describe 'test attribute "response"' do
125
+ it 'should work' do
126
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
127
+ end
128
+ end
129
+
130
+ describe 'test attribute "identify_actor_given_id"' do
131
+ it 'should work' do
132
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
133
+ end
134
+ end
135
+
136
+ describe 'test attribute "identify_actor_name"' do
137
+ it 'should work' do
138
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
139
+ end
140
+ end
141
+
142
+ describe 'test attribute "identify_data"' do
143
+ it 'should work' do
144
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
145
+ end
146
+ end
147
+
148
+ describe 'test attribute "tags"' do
149
+ it 'should work' do
150
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
151
+ end
152
+ end
153
+
154
+ describe 'test attribute "properties"' do
155
+ it 'should work' do
156
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
157
+ end
158
+ end
159
+
160
+ describe 'test attribute "ip_address"' do
161
+ it 'should work' do
162
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
163
+ end
164
+ end
165
+
166
+ describe 'test attribute "sdk_language"' do
167
+ it 'should work' do
168
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
169
+ end
170
+ end
171
+
172
+ describe 'test attribute "agentcat_version"' do
173
+ it 'should work' do
174
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
175
+ end
176
+ end
177
+
178
+ describe 'test attribute "server_name"' do
179
+ it 'should work' do
180
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
181
+ end
182
+ end
183
+
184
+ describe 'test attribute "server_version"' do
185
+ it 'should work' do
186
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
187
+ end
188
+ end
189
+
190
+ describe 'test attribute "client_name"' do
191
+ it 'should work' do
192
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
193
+ end
194
+ end
195
+
196
+ describe 'test attribute "client_version"' do
197
+ it 'should work' do
198
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
199
+ end
200
+ end
201
+
202
+ end
@@ -0,0 +1,46 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::QueryTimeout
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::QueryTimeout do
21
+ let(:instance) { AgentCatApi::QueryTimeout.new }
22
+
23
+ describe 'test an instance of QueryTimeout' do
24
+ it 'should create an instance of QueryTimeout' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::QueryTimeout)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "detail"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "code"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["query_timeout"])
40
+ # validator.allowable_values.each do |value|
41
+ # expect { instance.code = value }.not_to raise_error
42
+ # end
43
+ end
44
+ end
45
+
46
+ end
@@ -0,0 +1,36 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::UnsubscribeRequestRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::UnsubscribeRequestRequest do
21
+ let(:instance) { AgentCatApi::UnsubscribeRequestRequest.new }
22
+
23
+ describe 'test an instance of UnsubscribeRequestRequest' do
24
+ it 'should create an instance of UnsubscribeRequestRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(AgentCatApi::UnsubscribeRequestRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "token"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,32 @@
1
+ =begin
2
+ #AgentCat API
3
+
4
+ #API for AgentCat application
5
+
6
+ The version of the OpenAPI document: v1
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.14.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for AgentCatApi::ValidationErrorValue
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe AgentCatApi::ValidationErrorValue do
21
+ describe '.openapi_one_of' do
22
+ it 'lists the items referenced in the oneOf array' do
23
+ expect(described_class.openapi_one_of).to_not be_empty
24
+ end
25
+ end
26
+
27
+ describe '.build' do
28
+ it 'returns the correct model' do
29
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
30
+ end
31
+ end
32
+ end