late-sdk 0.0.76 → 0.0.78

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 (97) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -1
  3. data/docs/ActivateSequence200Response.md +20 -0
  4. data/docs/AddBroadcastRecipients200Response.md +22 -0
  5. data/docs/BroadcastsApi.md +49 -42
  6. data/docs/CancelBroadcast200Response.md +20 -0
  7. data/docs/CancelBroadcast200ResponseBroadcast.md +20 -0
  8. data/docs/CreateBroadcast200Response.md +20 -0
  9. data/docs/CreateBroadcast200ResponseBroadcast.md +30 -0
  10. data/docs/CreateSequence200Response.md +20 -0
  11. data/docs/CreateSequence200ResponseSequence.md +30 -0
  12. data/docs/CreateSequenceRequestStepsInner.md +1 -1
  13. data/docs/EnrollContacts200Response.md +22 -0
  14. data/docs/GetBroadcast200Response.md +20 -0
  15. data/docs/GetBroadcast200ResponseBroadcast.md +54 -0
  16. data/docs/{CreateSequenceRequestStepsInnerMessage.md → GetBroadcast200ResponseBroadcastMessage.md} +2 -2
  17. data/docs/GetBroadcast200ResponseBroadcastSegmentFilters.md +18 -0
  18. data/docs/GetSequence200Response.md +20 -0
  19. data/docs/GetSequence200ResponseSequence.md +44 -0
  20. data/docs/GetSequence200ResponseSequenceStepsInner.md +24 -0
  21. data/docs/GetSequence200ResponseSequenceStepsInnerTemplate.md +22 -0
  22. data/docs/ListBroadcastRecipients200Response.md +22 -0
  23. data/docs/ListBroadcastRecipients200ResponseRecipientsInner.md +38 -0
  24. data/docs/ListSequenceEnrollments200Response.md +22 -0
  25. data/docs/ListSequenceEnrollments200ResponseEnrollmentsInner.md +40 -0
  26. data/docs/ScheduleBroadcast200Response.md +20 -0
  27. data/docs/ScheduleBroadcast200ResponseBroadcast.md +22 -0
  28. data/docs/SequencesApi.md +49 -42
  29. data/docs/UpdateBroadcast200Response.md +20 -0
  30. data/docs/UpdateBroadcast200ResponseBroadcast.md +26 -0
  31. data/docs/UpdateSequence200Response.md +20 -0
  32. data/docs/UpdateSequence200ResponseSequence.md +32 -0
  33. data/lib/late-sdk/api/broadcasts_api.rb +35 -35
  34. data/lib/late-sdk/api/sequences_api.rb +35 -35
  35. data/lib/late-sdk/models/activate_sequence200_response.rb +156 -0
  36. data/lib/late-sdk/models/add_broadcast_recipients200_response.rb +167 -0
  37. data/lib/late-sdk/models/cancel_broadcast200_response.rb +156 -0
  38. data/lib/late-sdk/models/cancel_broadcast200_response_broadcast.rb +156 -0
  39. data/lib/late-sdk/models/create_broadcast200_response.rb +156 -0
  40. data/lib/late-sdk/models/create_broadcast200_response_broadcast.rb +201 -0
  41. data/lib/late-sdk/models/create_sequence200_response.rb +156 -0
  42. data/lib/late-sdk/models/create_sequence200_response_sequence.rb +201 -0
  43. data/lib/late-sdk/models/create_sequence_request_steps_inner.rb +1 -1
  44. data/lib/late-sdk/models/enroll_contacts200_response.rb +167 -0
  45. data/lib/late-sdk/models/get_broadcast200_response.rb +156 -0
  46. data/lib/late-sdk/models/get_broadcast200_response_broadcast.rb +343 -0
  47. data/lib/late-sdk/models/{create_sequence_request_steps_inner_message.rb → get_broadcast200_response_broadcast_message.rb} +3 -3
  48. data/lib/late-sdk/models/get_broadcast200_response_broadcast_segment_filters.rb +149 -0
  49. data/lib/late-sdk/models/get_sequence200_response.rb +156 -0
  50. data/lib/late-sdk/models/get_sequence200_response_sequence.rb +300 -0
  51. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner.rb +174 -0
  52. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner_template.rb +165 -0
  53. data/lib/late-sdk/models/list_broadcast_recipients200_response.rb +167 -0
  54. data/lib/late-sdk/models/list_broadcast_recipients200_response_recipients_inner.rb +271 -0
  55. data/lib/late-sdk/models/list_sequence_enrollments200_response.rb +167 -0
  56. data/lib/late-sdk/models/list_sequence_enrollments200_response_enrollments_inner.rb +280 -0
  57. data/lib/late-sdk/models/schedule_broadcast200_response.rb +156 -0
  58. data/lib/late-sdk/models/schedule_broadcast200_response_broadcast.rb +165 -0
  59. data/lib/late-sdk/models/update_broadcast200_response.rb +156 -0
  60. data/lib/late-sdk/models/update_broadcast200_response_broadcast.rb +183 -0
  61. data/lib/late-sdk/models/update_sequence200_response.rb +156 -0
  62. data/lib/late-sdk/models/update_sequence200_response_sequence.rb +212 -0
  63. data/lib/late-sdk/version.rb +1 -1
  64. data/lib/late-sdk.rb +27 -1
  65. data/openapi.yaml +270 -14
  66. data/spec/api/broadcasts_api_spec.rb +7 -7
  67. data/spec/api/sequences_api_spec.rb +7 -7
  68. data/spec/models/activate_sequence200_response_spec.rb +42 -0
  69. data/spec/models/add_broadcast_recipients200_response_spec.rb +48 -0
  70. data/spec/models/cancel_broadcast200_response_broadcast_spec.rb +42 -0
  71. data/spec/models/cancel_broadcast200_response_spec.rb +42 -0
  72. data/spec/models/create_broadcast200_response_broadcast_spec.rb +72 -0
  73. data/spec/models/create_broadcast200_response_spec.rb +42 -0
  74. data/spec/models/create_sequence200_response_sequence_spec.rb +72 -0
  75. data/spec/models/create_sequence200_response_spec.rb +42 -0
  76. data/spec/models/enroll_contacts200_response_spec.rb +48 -0
  77. data/spec/models/{create_sequence_request_steps_inner_message_spec.rb → get_broadcast200_response_broadcast_message_spec.rb} +6 -6
  78. data/spec/models/get_broadcast200_response_broadcast_segment_filters_spec.rb +36 -0
  79. data/spec/models/get_broadcast200_response_broadcast_spec.rb +148 -0
  80. data/spec/models/get_broadcast200_response_spec.rb +42 -0
  81. data/spec/models/get_sequence200_response_sequence_spec.rb +118 -0
  82. data/spec/models/get_sequence200_response_sequence_steps_inner_spec.rb +54 -0
  83. data/spec/models/get_sequence200_response_sequence_steps_inner_template_spec.rb +48 -0
  84. data/spec/models/get_sequence200_response_spec.rb +42 -0
  85. data/spec/models/list_broadcast_recipients200_response_recipients_inner_spec.rb +100 -0
  86. data/spec/models/list_broadcast_recipients200_response_spec.rb +48 -0
  87. data/spec/models/list_sequence_enrollments200_response_enrollments_inner_spec.rb +106 -0
  88. data/spec/models/list_sequence_enrollments200_response_spec.rb +48 -0
  89. data/spec/models/schedule_broadcast200_response_broadcast_spec.rb +48 -0
  90. data/spec/models/schedule_broadcast200_response_spec.rb +42 -0
  91. data/spec/models/update_broadcast200_response_broadcast_spec.rb +60 -0
  92. data/spec/models/update_broadcast200_response_spec.rb +42 -0
  93. data/spec/models/update_sequence200_response_sequence_spec.rb +78 -0
  94. data/spec/models/update_sequence200_response_spec.rb +42 -0
  95. data/zernio-sdk-0.0.78.gem +0 -0
  96. metadata +110 -6
  97. data/zernio-sdk-0.0.76.gem +0 -0
@@ -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::AddBroadcastRecipients200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::AddBroadcastRecipients200Response do
21
+ #let(:instance) { Late::AddBroadcastRecipients200Response.new }
22
+
23
+ describe 'test an instance of AddBroadcastRecipients200Response' do
24
+ it 'should create an instance of AddBroadcastRecipients200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::AddBroadcastRecipients200Response)
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 "added"' 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 "skipped"' 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::CancelBroadcast200ResponseBroadcast
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CancelBroadcast200ResponseBroadcast do
21
+ #let(:instance) { Late::CancelBroadcast200ResponseBroadcast.new }
22
+
23
+ describe 'test an instance of CancelBroadcast200ResponseBroadcast' do
24
+ it 'should create an instance of CancelBroadcast200ResponseBroadcast' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CancelBroadcast200ResponseBroadcast)
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 "status"' 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::CancelBroadcast200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CancelBroadcast200Response do
21
+ #let(:instance) { Late::CancelBroadcast200Response.new }
22
+
23
+ describe 'test an instance of CancelBroadcast200Response' do
24
+ it 'should create an instance of CancelBroadcast200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CancelBroadcast200Response)
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 "broadcast"' 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,72 @@
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::CreateBroadcast200ResponseBroadcast
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateBroadcast200ResponseBroadcast do
21
+ #let(:instance) { Late::CreateBroadcast200ResponseBroadcast.new }
22
+
23
+ describe 'test an instance of CreateBroadcast200ResponseBroadcast' do
24
+ it 'should create an instance of CreateBroadcast200ResponseBroadcast' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateBroadcast200ResponseBroadcast)
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 "name"' 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 "platform"' 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 "account_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 "status"' 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
+ 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::CreateBroadcast200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateBroadcast200Response do
21
+ #let(:instance) { Late::CreateBroadcast200Response.new }
22
+
23
+ describe 'test an instance of CreateBroadcast200Response' do
24
+ it 'should create an instance of CreateBroadcast200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateBroadcast200Response)
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 "broadcast"' 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,72 @@
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::CreateSequence200ResponseSequence
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateSequence200ResponseSequence do
21
+ #let(:instance) { Late::CreateSequence200ResponseSequence.new }
22
+
23
+ describe 'test an instance of CreateSequence200ResponseSequence' do
24
+ it 'should create an instance of CreateSequence200ResponseSequence' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateSequence200ResponseSequence)
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 "name"' 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 "platform"' 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 "status"' 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 "steps_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
+ 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::CreateSequence200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateSequence200Response do
21
+ #let(:instance) { Late::CreateSequence200Response.new }
22
+
23
+ describe 'test an instance of CreateSequence200Response' do
24
+ it 'should create an instance of CreateSequence200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateSequence200Response)
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 "sequence"' 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::EnrollContacts200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::EnrollContacts200Response do
21
+ #let(:instance) { Late::EnrollContacts200Response.new }
22
+
23
+ describe 'test an instance of EnrollContacts200Response' do
24
+ it 'should create an instance of EnrollContacts200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::EnrollContacts200Response)
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 "enrolled"' 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 "skipped"' 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
@@ -14,16 +14,16 @@ require 'spec_helper'
14
14
  require 'json'
15
15
  require 'date'
16
16
 
17
- # Unit tests for Late::CreateSequenceRequestStepsInnerMessage
17
+ # Unit tests for Late::GetBroadcast200ResponseBroadcastMessage
18
18
  # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
19
  # Please update as you see appropriate
20
- describe Late::CreateSequenceRequestStepsInnerMessage do
21
- #let(:instance) { Late::CreateSequenceRequestStepsInnerMessage.new }
20
+ describe Late::GetBroadcast200ResponseBroadcastMessage do
21
+ #let(:instance) { Late::GetBroadcast200ResponseBroadcastMessage.new }
22
22
 
23
- describe 'test an instance of CreateSequenceRequestStepsInnerMessage' do
24
- it 'should create an instance of CreateSequenceRequestStepsInnerMessage' do
23
+ describe 'test an instance of GetBroadcast200ResponseBroadcastMessage' do
24
+ it 'should create an instance of GetBroadcast200ResponseBroadcastMessage' do
25
25
  # uncomment below to test the instance creation
26
- #expect(instance).to be_instance_of(Late::CreateSequenceRequestStepsInnerMessage)
26
+ #expect(instance).to be_instance_of(Late::GetBroadcast200ResponseBroadcastMessage)
27
27
  end
28
28
  end
29
29
 
@@ -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::GetBroadcast200ResponseBroadcastSegmentFilters
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetBroadcast200ResponseBroadcastSegmentFilters do
21
+ #let(:instance) { Late::GetBroadcast200ResponseBroadcastSegmentFilters.new }
22
+
23
+ describe 'test an instance of GetBroadcast200ResponseBroadcastSegmentFilters' do
24
+ it 'should create an instance of GetBroadcast200ResponseBroadcastSegmentFilters' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetBroadcast200ResponseBroadcastSegmentFilters)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "tags"' 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,148 @@
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::GetBroadcast200ResponseBroadcast
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetBroadcast200ResponseBroadcast do
21
+ #let(:instance) { Late::GetBroadcast200ResponseBroadcast.new }
22
+
23
+ describe 'test an instance of GetBroadcast200ResponseBroadcast' do
24
+ it 'should create an instance of GetBroadcast200ResponseBroadcast' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetBroadcast200ResponseBroadcast)
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 "name"' 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 "platform"' 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 "account_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 "message"' 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 "template"' 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 "segment_filters"' 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 "status"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["draft", "scheduled", "sending", "completed", "failed", "cancelled"])
82
+ # validator.allowable_values.each do |value|
83
+ # expect { instance.status = value }.not_to raise_error
84
+ # end
85
+ end
86
+ end
87
+
88
+ describe 'test attribute "scheduled_at"' 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 "started_at"' 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 "completed_at"' 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 "recipient_count"' 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 "sent_count"' 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 "delivered_count"' 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 "read_count"' 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 "failed_count"' 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 "created_at"' 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 "updated_at"' 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
+ 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::GetBroadcast200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetBroadcast200Response do
21
+ #let(:instance) { Late::GetBroadcast200Response.new }
22
+
23
+ describe 'test an instance of GetBroadcast200Response' do
24
+ it 'should create an instance of GetBroadcast200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetBroadcast200Response)
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 "broadcast"' 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