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,118 @@
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::GetSequence200ResponseSequence
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetSequence200ResponseSequence do
21
+ #let(:instance) { Late::GetSequence200ResponseSequence.new }
22
+
23
+ describe 'test an instance of GetSequence200ResponseSequence' do
24
+ it 'should create an instance of GetSequence200ResponseSequence' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetSequence200ResponseSequence)
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
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["draft", "active", "paused"])
64
+ # validator.allowable_values.each do |value|
65
+ # expect { instance.status = value }.not_to raise_error
66
+ # end
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "steps"' 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 "exit_on_reply"' 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 "exit_on_unsubscribe"' 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 "total_enrolled"' 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 "total_completed"' 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 "total_exited"' 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 "created_at"' 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 "updated_at"' 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
+ end
@@ -0,0 +1,54 @@
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::GetSequence200ResponseSequenceStepsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetSequence200ResponseSequenceStepsInner do
21
+ #let(:instance) { Late::GetSequence200ResponseSequenceStepsInner.new }
22
+
23
+ describe 'test an instance of GetSequence200ResponseSequenceStepsInner' do
24
+ it 'should create an instance of GetSequence200ResponseSequenceStepsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetSequence200ResponseSequenceStepsInner)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "order"' 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 "delay_minutes"' 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 "message"' 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 "template"' 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
+ 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::GetSequence200ResponseSequenceStepsInnerTemplate
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetSequence200ResponseSequenceStepsInnerTemplate do
21
+ #let(:instance) { Late::GetSequence200ResponseSequenceStepsInnerTemplate.new }
22
+
23
+ describe 'test an instance of GetSequence200ResponseSequenceStepsInnerTemplate' do
24
+ it 'should create an instance of GetSequence200ResponseSequenceStepsInnerTemplate' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetSequence200ResponseSequenceStepsInnerTemplate)
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 "language"' 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 "variable_mapping"' 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::GetSequence200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::GetSequence200Response do
21
+ #let(:instance) { Late::GetSequence200Response.new }
22
+
23
+ describe 'test an instance of GetSequence200Response' do
24
+ it 'should create an instance of GetSequence200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::GetSequence200Response)
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,100 @@
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::ListBroadcastRecipients200ResponseRecipientsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListBroadcastRecipients200ResponseRecipientsInner do
21
+ #let(:instance) { Late::ListBroadcastRecipients200ResponseRecipientsInner.new }
22
+
23
+ describe 'test an instance of ListBroadcastRecipients200ResponseRecipientsInner' do
24
+ it 'should create an instance of ListBroadcastRecipients200ResponseRecipientsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListBroadcastRecipients200ResponseRecipientsInner)
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 "contact_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 "channel_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 "platform_identifier"' 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 "contact_name"' 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
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["pending", "sent", "delivered", "read", "failed"])
64
+ # validator.allowable_values.each do |value|
65
+ # expect { instance.status = value }.not_to raise_error
66
+ # end
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "message_id"' 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 "sent_at"' 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 "delivered_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 "read_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
+ 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::ListBroadcastRecipients200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListBroadcastRecipients200Response do
21
+ #let(:instance) { Late::ListBroadcastRecipients200Response.new }
22
+
23
+ describe 'test an instance of ListBroadcastRecipients200Response' do
24
+ it 'should create an instance of ListBroadcastRecipients200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListBroadcastRecipients200Response)
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 "recipients"' 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 "pagination"' 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,106 @@
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::ListSequenceEnrollments200ResponseEnrollmentsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListSequenceEnrollments200ResponseEnrollmentsInner do
21
+ #let(:instance) { Late::ListSequenceEnrollments200ResponseEnrollmentsInner.new }
22
+
23
+ describe 'test an instance of ListSequenceEnrollments200ResponseEnrollmentsInner' do
24
+ it 'should create an instance of ListSequenceEnrollments200ResponseEnrollmentsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListSequenceEnrollments200ResponseEnrollmentsInner)
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 "contact_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 "channel_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 "platform_identifier"' 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 "contact_name"' 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 "current_step_index"' 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 "status"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["active", "completed", "exited", "paused"])
70
+ # validator.allowable_values.each do |value|
71
+ # expect { instance.status = value }.not_to raise_error
72
+ # end
73
+ end
74
+ end
75
+
76
+ describe 'test attribute "exit_reason"' 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 "next_step_at"' 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 "steps_sent"' 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 "last_step_sent_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 "created_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
+ 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::ListSequenceEnrollments200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListSequenceEnrollments200Response do
21
+ #let(:instance) { Late::ListSequenceEnrollments200Response.new }
22
+
23
+ describe 'test an instance of ListSequenceEnrollments200Response' do
24
+ it 'should create an instance of ListSequenceEnrollments200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListSequenceEnrollments200Response)
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 "enrollments"' 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 "pagination"' 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,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::ScheduleBroadcast200ResponseBroadcast
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ScheduleBroadcast200ResponseBroadcast do
21
+ #let(:instance) { Late::ScheduleBroadcast200ResponseBroadcast.new }
22
+
23
+ describe 'test an instance of ScheduleBroadcast200ResponseBroadcast' do
24
+ it 'should create an instance of ScheduleBroadcast200ResponseBroadcast' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ScheduleBroadcast200ResponseBroadcast)
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
+ describe 'test attribute "scheduled_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::ScheduleBroadcast200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ScheduleBroadcast200Response do
21
+ #let(:instance) { Late::ScheduleBroadcast200Response.new }
22
+
23
+ describe 'test an instance of ScheduleBroadcast200Response' do
24
+ it 'should create an instance of ScheduleBroadcast200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ScheduleBroadcast200Response)
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