daily-ruby 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +79 -0
- data/README.md +119 -0
- data/Rakefile +10 -0
- data/daily-ruby.gemspec +40 -0
- data/daily.yaml +422 -0
- data/docs/CreateMeetingToken200Response.md +18 -0
- data/docs/MeetingTokenRequest.md +18 -0
- data/docs/MeetingTokenRequestProperties.md +56 -0
- data/docs/MeetingTokenRequestPropertiesPermissions.md +22 -0
- data/docs/MeetingTokenRequestPropertiesPermissionsCanAdmin.md +49 -0
- data/docs/MeetingTokenRequestPropertiesPermissionsCanSend.md +49 -0
- data/docs/MeetingTokensApi.md +79 -0
- data/docs/RoomApi.md +227 -0
- data/docs/RoomDeletedResponse.md +20 -0
- data/docs/RoomNotFoundResponse.md +20 -0
- data/docs/RoomRequest.md +22 -0
- data/docs/RoomRequestProperties.md +76 -0
- data/docs/RoomResponse.md +28 -0
- data/docs/ServerErrorResponse.md +18 -0
- data/git_push.sh +57 -0
- data/lib/daily-ruby/api/meeting_tokens_api.rb +86 -0
- data/lib/daily-ruby/api/room_api.rb +218 -0
- data/lib/daily-ruby/api_client.rb +431 -0
- data/lib/daily-ruby/api_error.rb +58 -0
- data/lib/daily-ruby/configuration.rb +382 -0
- data/lib/daily-ruby/models/create_meeting_token200_response.rb +214 -0
- data/lib/daily-ruby/models/meeting_token_request.rb +215 -0
- data/lib/daily-ruby/models/meeting_token_request_properties.rb +438 -0
- data/lib/daily-ruby/models/meeting_token_request_properties_permissions.rb +232 -0
- data/lib/daily-ruby/models/meeting_token_request_properties_permissions_can_admin.rb +105 -0
- data/lib/daily-ruby/models/meeting_token_request_properties_permissions_can_send.rb +105 -0
- data/lib/daily-ruby/models/room_deleted_response.rb +224 -0
- data/lib/daily-ruby/models/room_not_found_response.rb +224 -0
- data/lib/daily-ruby/models/room_request.rb +267 -0
- data/lib/daily-ruby/models/room_request_properties.rb +521 -0
- data/lib/daily-ruby/models/room_response.rb +260 -0
- data/lib/daily-ruby/models/server_error_response.rb +215 -0
- data/lib/daily-ruby/version.rb +15 -0
- data/lib/daily-ruby.rb +53 -0
- data/run.sh +16 -0
- data/script.rb +35 -0
- data/spec/api/meeting_tokens_api_spec.rb +47 -0
- data/spec/api/room_api_spec.rb +74 -0
- data/spec/models/create_meeting_token200_response_spec.rb +36 -0
- data/spec/models/meeting_token_request_properties_permissions_can_admin_spec.rb +32 -0
- data/spec/models/meeting_token_request_properties_permissions_can_send_spec.rb +32 -0
- data/spec/models/meeting_token_request_properties_permissions_spec.rb +48 -0
- data/spec/models/meeting_token_request_properties_spec.rb +158 -0
- data/spec/models/meeting_token_request_spec.rb +36 -0
- data/spec/models/room_deleted_response_spec.rb +42 -0
- data/spec/models/room_not_found_response_spec.rb +42 -0
- data/spec/models/room_request_properties_spec.rb +218 -0
- data/spec/models/room_request_spec.rb +52 -0
- data/spec/models/room_response_spec.rb +66 -0
- data/spec/models/server_error_response_spec.rb +36 -0
- data/spec/spec_helper.rb +111 -0
- metadata +169 -0
@@ -0,0 +1,74 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for Daily::RoomApi
|
17
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'RoomApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@api_instance = Daily::RoomApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of RoomApi' do
|
30
|
+
it 'should create an instance of RoomApi' do
|
31
|
+
expect(@api_instance).to be_instance_of(Daily::RoomApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for create_room
|
36
|
+
# Create a new room
|
37
|
+
# A POST request to /rooms creates a new room.
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [RoomRequest] :room_request A room object
|
40
|
+
# @return [RoomResponse]
|
41
|
+
describe 'create_room 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 delete_room
|
48
|
+
# Delete room
|
49
|
+
# Delete a Daily room.
|
50
|
+
# @param name The room name that needs to be deleted
|
51
|
+
# @param [Hash] opts the optional parameters
|
52
|
+
# @return [RoomDeletedResponse]
|
53
|
+
describe 'delete_room 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
|
+
# unit tests for get_rooms
|
60
|
+
# Get a list rooms
|
61
|
+
# A GET request to /rooms returns a list of rooms.
|
62
|
+
# @param [Hash] opts the optional parameters
|
63
|
+
# @option opts [Integer] :offset The number of items to skip before starting to collect the result set.
|
64
|
+
# @option opts [Integer] :limit The numbers of items to return.
|
65
|
+
# @option opts [String] :ending_before A cursor for use in pagination. ending_before is an object ID that defines your place in the list.
|
66
|
+
# @option opts [String] :starting_after A cursor for use in pagination. starting_after is an object ID that defines your place in the list.
|
67
|
+
# @return [Array<RoomResponse>]
|
68
|
+
describe 'get_rooms test' do
|
69
|
+
it 'should work' do
|
70
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::CreateMeetingToken200Response
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::CreateMeetingToken200Response do
|
21
|
+
let(:instance) { Daily::CreateMeetingToken200Response.new }
|
22
|
+
|
23
|
+
describe 'test an instance of CreateMeetingToken200Response' do
|
24
|
+
it 'should create an instance of CreateMeetingToken200Response' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::CreateMeetingToken200Response)
|
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
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::MeetingTokenRequestPropertiesPermissionsCanAdmin
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::MeetingTokenRequestPropertiesPermissionsCanAdmin 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
|
@@ -0,0 +1,32 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::MeetingTokenRequestPropertiesPermissionsCanSend
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::MeetingTokenRequestPropertiesPermissionsCanSend 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
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::MeetingTokenRequestPropertiesPermissions
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::MeetingTokenRequestPropertiesPermissions do
|
21
|
+
let(:instance) { Daily::MeetingTokenRequestPropertiesPermissions.new }
|
22
|
+
|
23
|
+
describe 'test an instance of MeetingTokenRequestPropertiesPermissions' do
|
24
|
+
it 'should create an instance of MeetingTokenRequestPropertiesPermissions' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::MeetingTokenRequestPropertiesPermissions)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "has_presence"' 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 "can_send"' 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 "can_admin"' 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
|
+
end
|
@@ -0,0 +1,158 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::MeetingTokenRequestProperties
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::MeetingTokenRequestProperties do
|
21
|
+
let(:instance) { Daily::MeetingTokenRequestProperties.new }
|
22
|
+
|
23
|
+
describe 'test an instance of MeetingTokenRequestProperties' do
|
24
|
+
it 'should create an instance of MeetingTokenRequestProperties' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::MeetingTokenRequestProperties)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "room_name"' 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 "eject_at_token_exp"' 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 "nbf"' 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 "exp"' 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 "is_owner"' 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 "user_name"' do
|
61
|
+
it 'should work' do
|
62
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
describe 'test attribute "user_id"' do
|
67
|
+
it 'should work' do
|
68
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe 'test attribute "enable_screenshare"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
describe 'test attribute "start_video_off"' do
|
79
|
+
it 'should work' do
|
80
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe 'test attribute "start_audio_off"' do
|
85
|
+
it 'should work' do
|
86
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
describe 'test attribute "enable_recording"' do
|
91
|
+
it 'should work' do
|
92
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["local", "cloud", "raw-tracks", "unknown_default_open_api"])
|
94
|
+
# validator.allowable_values.each do |value|
|
95
|
+
# expect { instance.enable_recording = value }.not_to raise_error
|
96
|
+
# end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
describe 'test attribute "enable_prejoin_ui"' 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 "enable_live_captions_ui"' 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 "enable_recording_ui"' 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 "enable_terse_logging"' 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 "auto_start_transcription"' 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 "close_tab_on_exit"' 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 "redirect_on_meeting_exit"' 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 "lang"' do
|
143
|
+
it 'should work' do
|
144
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
145
|
+
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["de", "en", "es", "fi", "fr", "it", "jp", "ka", "nl", "no", "pt", "pt-BR", "pl", "ru", "sv", "tr", "user", "unknown_default_open_api"])
|
146
|
+
# validator.allowable_values.each do |value|
|
147
|
+
# expect { instance.lang = value }.not_to raise_error
|
148
|
+
# end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
describe 'test attribute "permissions"' do
|
153
|
+
it 'should work' do
|
154
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
155
|
+
end
|
156
|
+
end
|
157
|
+
|
158
|
+
end
|
@@ -0,0 +1,36 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::MeetingTokenRequest
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::MeetingTokenRequest do
|
21
|
+
let(:instance) { Daily::MeetingTokenRequest.new }
|
22
|
+
|
23
|
+
describe 'test an instance of MeetingTokenRequest' do
|
24
|
+
it 'should create an instance of MeetingTokenRequest' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::MeetingTokenRequest)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "properties"' 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
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::RoomDeletedResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::RoomDeletedResponse do
|
21
|
+
let(:instance) { Daily::RoomDeletedResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RoomDeletedResponse' do
|
24
|
+
it 'should create an instance of RoomDeletedResponse' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::RoomDeletedResponse)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "name"' 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 "deleted"' 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,42 @@
|
|
1
|
+
=begin
|
2
|
+
#Daily
|
3
|
+
|
4
|
+
#The official library for communicating with the Daily REST API.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.0.0
|
7
|
+
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.3.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Daily::RoomNotFoundResponse
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe Daily::RoomNotFoundResponse do
|
21
|
+
let(:instance) { Daily::RoomNotFoundResponse.new }
|
22
|
+
|
23
|
+
describe 'test an instance of RoomNotFoundResponse' do
|
24
|
+
it 'should create an instance of RoomNotFoundResponse' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(Daily::RoomNotFoundResponse)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "error"' 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 "info"' 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
|