late-sdk 0.0.84 → 0.0.85

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 (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +29 -0
  3. data/docs/AddWhatsAppGroupParticipantsRequest.md +18 -0
  4. data/docs/ApproveWhatsAppGroupJoinRequestsRequest.md +18 -0
  5. data/docs/CreateWhatsAppGroupChat201Response.md +20 -0
  6. data/docs/CreateWhatsAppGroupChat201ResponseGroup.md +20 -0
  7. data/docs/CreateWhatsAppGroupChatRequest.md +24 -0
  8. data/docs/CreateWhatsAppGroupInviteLink200Response.md +20 -0
  9. data/docs/GetWhatsAppGroupChat200Response.md +20 -0
  10. data/docs/GetWhatsAppGroupChat200ResponseGroup.md +32 -0
  11. data/docs/GetWhatsAppGroupChat200ResponseGroupParticipantsInner.md +20 -0
  12. data/docs/ListWhatsAppGroupChats200Response.md +20 -0
  13. data/docs/ListWhatsAppGroupChats200ResponseGroupsInner.md +22 -0
  14. data/docs/ListWhatsAppGroupChats200ResponsePaging.md +18 -0
  15. data/docs/ListWhatsAppGroupChats200ResponsePagingCursors.md +20 -0
  16. data/docs/ListWhatsAppGroupJoinRequests200Response.md +20 -0
  17. data/docs/ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner.md +20 -0
  18. data/docs/RejectWhatsAppGroupJoinRequestsRequest.md +18 -0
  19. data/docs/RemoveWhatsAppGroupParticipantsRequest.md +18 -0
  20. data/docs/UpdateWhatsAppGroupChatRequest.md +22 -0
  21. data/docs/WhatsAppApi.md +958 -154
  22. data/lib/late-sdk/api/whats_app_api.rb +945 -118
  23. data/lib/late-sdk/models/add_whats_app_group_participants_request.rb +176 -0
  24. data/lib/late-sdk/models/approve_whats_app_group_join_requests_request.rb +167 -0
  25. data/lib/late-sdk/models/create_whats_app_group_chat201_response.rb +156 -0
  26. data/lib/late-sdk/models/create_whats_app_group_chat201_response_group.rb +156 -0
  27. data/lib/late-sdk/models/create_whats_app_group_chat_request.rb +274 -0
  28. data/lib/late-sdk/models/create_whats_app_group_invite_link200_response.rb +156 -0
  29. data/lib/late-sdk/models/get_whats_app_group_chat200_response.rb +156 -0
  30. data/lib/late-sdk/models/get_whats_app_group_chat200_response_group.rb +213 -0
  31. data/lib/late-sdk/models/get_whats_app_group_chat200_response_group_participants_inner.rb +157 -0
  32. data/lib/late-sdk/models/list_whats_app_group_chats200_response.rb +158 -0
  33. data/lib/late-sdk/models/list_whats_app_group_chats200_response_groups_inner.rb +168 -0
  34. data/lib/late-sdk/models/list_whats_app_group_chats200_response_paging.rb +147 -0
  35. data/lib/late-sdk/models/list_whats_app_group_chats200_response_paging_cursors.rb +156 -0
  36. data/lib/late-sdk/models/list_whats_app_group_join_requests200_response.rb +158 -0
  37. data/lib/late-sdk/models/list_whats_app_group_join_requests200_response_join_requests_inner.rb +158 -0
  38. data/lib/late-sdk/models/reject_whats_app_group_join_requests_request.rb +167 -0
  39. data/lib/late-sdk/models/remove_whats_app_group_participants_request.rb +167 -0
  40. data/lib/late-sdk/models/update_whats_app_group_chat_request.rb +237 -0
  41. data/lib/late-sdk/version.rb +1 -1
  42. data/lib/late-sdk.rb +18 -0
  43. data/openapi.yaml +371 -0
  44. data/spec/api/whats_app_api_spec.rb +148 -0
  45. data/spec/models/add_whats_app_group_participants_request_spec.rb +36 -0
  46. data/spec/models/approve_whats_app_group_join_requests_request_spec.rb +36 -0
  47. data/spec/models/create_whats_app_group_chat201_response_group_spec.rb +42 -0
  48. data/spec/models/create_whats_app_group_chat201_response_spec.rb +42 -0
  49. data/spec/models/create_whats_app_group_chat_request_spec.rb +58 -0
  50. data/spec/models/create_whats_app_group_invite_link200_response_spec.rb +42 -0
  51. data/spec/models/get_whats_app_group_chat200_response_group_participants_inner_spec.rb +42 -0
  52. data/spec/models/get_whats_app_group_chat200_response_group_spec.rb +78 -0
  53. data/spec/models/get_whats_app_group_chat200_response_spec.rb +42 -0
  54. data/spec/models/list_whats_app_group_chats200_response_groups_inner_spec.rb +48 -0
  55. data/spec/models/list_whats_app_group_chats200_response_paging_cursors_spec.rb +42 -0
  56. data/spec/models/list_whats_app_group_chats200_response_paging_spec.rb +36 -0
  57. data/spec/models/list_whats_app_group_chats200_response_spec.rb +42 -0
  58. data/spec/models/list_whats_app_group_join_requests200_response_join_requests_inner_spec.rb +42 -0
  59. data/spec/models/list_whats_app_group_join_requests200_response_spec.rb +42 -0
  60. data/spec/models/reject_whats_app_group_join_requests_request_spec.rb +36 -0
  61. data/spec/models/remove_whats_app_group_participants_request_spec.rb +36 -0
  62. data/spec/models/update_whats_app_group_chat_request_spec.rb +52 -0
  63. data/zernio-sdk-0.0.85.gem +0 -0
  64. metadata +74 -2
  65. data/zernio-sdk-0.0.84.gem +0 -0
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::CreateWhatsAppGroupChat201Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateWhatsAppGroupChat201Response do
21
+ #let(:instance) { Late::CreateWhatsAppGroupChat201Response.new }
22
+
23
+ describe 'test an instance of CreateWhatsAppGroupChat201Response' do
24
+ it 'should create an instance of CreateWhatsAppGroupChat201Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateWhatsAppGroupChat201Response)
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 "group"' 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,58 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::CreateWhatsAppGroupChatRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateWhatsAppGroupChatRequest do
21
+ #let(:instance) { Late::CreateWhatsAppGroupChatRequest.new }
22
+
23
+ describe 'test an instance of CreateWhatsAppGroupChatRequest' do
24
+ it 'should create an instance of CreateWhatsAppGroupChatRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateWhatsAppGroupChatRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "account_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 "subject"' 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 "description"' 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 "join_approval_mode"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["approval_required", "auto_approve"])
52
+ # validator.allowable_values.each do |value|
53
+ # expect { instance.join_approval_mode = value }.not_to raise_error
54
+ # end
55
+ end
56
+ end
57
+
58
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::CreateWhatsAppGroupInviteLink200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateWhatsAppGroupInviteLink200Response do
21
+ #let(:instance) { Late::CreateWhatsAppGroupInviteLink200Response.new }
22
+
23
+ describe 'test an instance of CreateWhatsAppGroupInviteLink200Response' do
24
+ it 'should create an instance of CreateWhatsAppGroupInviteLink200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateWhatsAppGroupInviteLink200Response)
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 "invite_link"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetWhatsAppGroupChat200ResponseGroupParticipantsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetWhatsAppGroupChat200ResponseGroupParticipantsInner do
21
+ #let(:instance) { Late::GetWhatsAppGroupChat200ResponseGroupParticipantsInner.new }
22
+
23
+ describe 'test an instance of GetWhatsAppGroupChat200ResponseGroupParticipantsInner' do
24
+ it 'should create an instance of GetWhatsAppGroupChat200ResponseGroupParticipantsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetWhatsAppGroupChat200ResponseGroupParticipantsInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "user"' 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 "admin"' 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,78 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetWhatsAppGroupChat200ResponseGroup
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetWhatsAppGroupChat200ResponseGroup do
21
+ #let(:instance) { Late::GetWhatsAppGroupChat200ResponseGroup.new }
22
+
23
+ describe 'test an instance of GetWhatsAppGroupChat200ResponseGroup' do
24
+ it 'should create an instance of GetWhatsAppGroupChat200ResponseGroup' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetWhatsAppGroupChat200ResponseGroup)
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 "subject"' 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 "description"' 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 "join_approval_mode"' 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 "participants"' 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 "participant_count"' 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 "created_at"' 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 "is_suspended"' 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
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::GetWhatsAppGroupChat200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetWhatsAppGroupChat200Response do
21
+ #let(:instance) { Late::GetWhatsAppGroupChat200Response.new }
22
+
23
+ describe 'test an instance of GetWhatsAppGroupChat200Response' do
24
+ it 'should create an instance of GetWhatsAppGroupChat200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetWhatsAppGroupChat200Response)
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 "group"' 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,48 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupChats200ResponseGroupsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupChats200ResponseGroupsInner do
21
+ #let(:instance) { Late::ListWhatsAppGroupChats200ResponseGroupsInner.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupChats200ResponseGroupsInner' do
24
+ it 'should create an instance of ListWhatsAppGroupChats200ResponseGroupsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupChats200ResponseGroupsInner)
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 "subject"' 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 "created_at"' 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,42 @@
1
+ =begin
2
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupChats200ResponsePagingCursors
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupChats200ResponsePagingCursors do
21
+ #let(:instance) { Late::ListWhatsAppGroupChats200ResponsePagingCursors.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupChats200ResponsePagingCursors' do
24
+ it 'should create an instance of ListWhatsAppGroupChats200ResponsePagingCursors' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupChats200ResponsePagingCursors)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "after"' 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 "before"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupChats200ResponsePaging
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupChats200ResponsePaging do
21
+ #let(:instance) { Late::ListWhatsAppGroupChats200ResponsePaging.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupChats200ResponsePaging' do
24
+ it 'should create an instance of ListWhatsAppGroupChats200ResponsePaging' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupChats200ResponsePaging)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "cursors"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupChats200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupChats200Response do
21
+ #let(:instance) { Late::ListWhatsAppGroupChats200Response.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupChats200Response' do
24
+ it 'should create an instance of ListWhatsAppGroupChats200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupChats200Response)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "groups"' 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 "paging"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner do
21
+ #let(:instance) { Late::ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner' do
24
+ it 'should create an instance of ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupJoinRequests200ResponseJoinRequestsInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "user"' 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 "timestamp"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::ListWhatsAppGroupJoinRequests200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListWhatsAppGroupJoinRequests200Response do
21
+ #let(:instance) { Late::ListWhatsAppGroupJoinRequests200Response.new }
22
+
23
+ describe 'test an instance of ListWhatsAppGroupJoinRequests200Response' do
24
+ it 'should create an instance of ListWhatsAppGroupJoinRequests200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListWhatsAppGroupJoinRequests200Response)
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 "join_requests"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::RejectWhatsAppGroupJoinRequestsRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::RejectWhatsAppGroupJoinRequestsRequest do
21
+ #let(:instance) { Late::RejectWhatsAppGroupJoinRequestsRequest.new }
22
+
23
+ describe 'test an instance of RejectWhatsAppGroupJoinRequestsRequest' do
24
+ it 'should create an instance of RejectWhatsAppGroupJoinRequestsRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::RejectWhatsAppGroupJoinRequestsRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "phone_numbers"' 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
+ #Zernio API
3
+
4
+ #API reference for Zernio. Authenticate with a Bearer API key. Base URL: https://zernio.com/api
5
+
6
+ The version of the OpenAPI document: 1.0.1
7
+ Contact: support@zernio.com
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.19.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Late::RemoveWhatsAppGroupParticipantsRequest
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::RemoveWhatsAppGroupParticipantsRequest do
21
+ #let(:instance) { Late::RemoveWhatsAppGroupParticipantsRequest.new }
22
+
23
+ describe 'test an instance of RemoveWhatsAppGroupParticipantsRequest' do
24
+ it 'should create an instance of RemoveWhatsAppGroupParticipantsRequest' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::RemoveWhatsAppGroupParticipantsRequest)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "phone_numbers"' 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