late-sdk 0.0.75 → 0.0.77

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +28 -1
  3. data/docs/ActivateSequence200Response.md +20 -0
  4. data/docs/AddBroadcastRecipients200Response.md +22 -0
  5. data/docs/BroadcastsApi.md +56 -48
  6. data/docs/CancelBroadcast200Response.md +20 -0
  7. data/docs/CancelBroadcast200ResponseBroadcast.md +20 -0
  8. data/docs/CreateSequenceRequestStepsInner.md +1 -1
  9. data/docs/EnrollContacts200Response.md +22 -0
  10. data/docs/GetBroadcast200Response.md +20 -0
  11. data/docs/GetBroadcast200ResponseBroadcast.md +54 -0
  12. data/docs/{CreateSequenceRequestStepsInnerMessage.md → GetBroadcast200ResponseBroadcastMessage.md} +2 -2
  13. data/docs/GetBroadcast200ResponseBroadcastSegmentFilters.md +18 -0
  14. data/docs/GetSequence200Response.md +20 -0
  15. data/docs/GetSequence200ResponseSequence.md +44 -0
  16. data/docs/GetSequence200ResponseSequenceStepsInner.md +24 -0
  17. data/docs/GetSequence200ResponseSequenceStepsInnerTemplate.md +22 -0
  18. data/docs/ListBroadcastRecipients200Response.md +22 -0
  19. data/docs/ListBroadcastRecipients200ResponseRecipientsInner.md +38 -0
  20. data/docs/ListBroadcasts200Response.md +22 -0
  21. data/docs/ListBroadcasts200ResponseBroadcastsInner.md +50 -0
  22. data/docs/ListSequenceEnrollments200Response.md +22 -0
  23. data/docs/ListSequenceEnrollments200ResponseEnrollmentsInner.md +40 -0
  24. data/docs/ListSequences200Response.md +22 -0
  25. data/docs/ListSequences200ResponseSequencesInner.md +46 -0
  26. data/docs/ScheduleBroadcast200Response.md +20 -0
  27. data/docs/ScheduleBroadcast200ResponseBroadcast.md +22 -0
  28. data/docs/SendBroadcast200Response.md +26 -0
  29. data/docs/SequencesApi.md +49 -42
  30. data/docs/UpdateBroadcast200Response.md +20 -0
  31. data/docs/UpdateBroadcast200ResponseBroadcast.md +26 -0
  32. data/docs/UpdateSequence200Response.md +20 -0
  33. data/docs/UpdateSequence200ResponseSequence.md +32 -0
  34. data/lib/late-sdk/api/broadcasts_api.rb +40 -40
  35. data/lib/late-sdk/api/sequences_api.rb +35 -35
  36. data/lib/late-sdk/models/activate_sequence200_response.rb +156 -0
  37. data/lib/late-sdk/models/add_broadcast_recipients200_response.rb +167 -0
  38. data/lib/late-sdk/models/cancel_broadcast200_response.rb +156 -0
  39. data/lib/late-sdk/models/cancel_broadcast200_response_broadcast.rb +156 -0
  40. data/lib/late-sdk/models/create_sequence_request_steps_inner.rb +1 -1
  41. data/lib/late-sdk/models/enroll_contacts200_response.rb +167 -0
  42. data/lib/late-sdk/models/get_broadcast200_response.rb +156 -0
  43. data/lib/late-sdk/models/get_broadcast200_response_broadcast.rb +343 -0
  44. data/lib/late-sdk/models/{create_sequence_request_steps_inner_message.rb → get_broadcast200_response_broadcast_message.rb} +3 -3
  45. data/lib/late-sdk/models/get_broadcast200_response_broadcast_segment_filters.rb +149 -0
  46. data/lib/late-sdk/models/get_sequence200_response.rb +156 -0
  47. data/lib/late-sdk/models/get_sequence200_response_sequence.rb +300 -0
  48. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner.rb +174 -0
  49. data/lib/late-sdk/models/get_sequence200_response_sequence_steps_inner_template.rb +165 -0
  50. data/lib/late-sdk/models/list_broadcast_recipients200_response.rb +167 -0
  51. data/lib/late-sdk/models/list_broadcast_recipients200_response_recipients_inner.rb +271 -0
  52. data/lib/late-sdk/models/list_broadcasts200_response.rb +167 -0
  53. data/lib/late-sdk/models/list_broadcasts200_response_broadcasts_inner.rb +327 -0
  54. data/lib/late-sdk/models/list_sequence_enrollments200_response.rb +167 -0
  55. data/lib/late-sdk/models/list_sequence_enrollments200_response_enrollments_inner.rb +280 -0
  56. data/lib/late-sdk/models/list_sequences200_response.rb +167 -0
  57. data/lib/late-sdk/models/list_sequences200_response_sequences_inner.rb +309 -0
  58. data/lib/late-sdk/models/schedule_broadcast200_response.rb +156 -0
  59. data/lib/late-sdk/models/schedule_broadcast200_response_broadcast.rb +165 -0
  60. data/lib/late-sdk/models/send_broadcast200_response.rb +221 -0
  61. data/lib/late-sdk/models/update_broadcast200_response.rb +156 -0
  62. data/lib/late-sdk/models/update_broadcast200_response_broadcast.rb +183 -0
  63. data/lib/late-sdk/models/update_sequence200_response.rb +156 -0
  64. data/lib/late-sdk/models/update_sequence200_response_sequence.rb +212 -0
  65. data/lib/late-sdk/version.rb +1 -1
  66. data/lib/late-sdk.rb +28 -1
  67. data/openapi.yaml +318 -15
  68. data/spec/api/broadcasts_api_spec.rb +8 -8
  69. data/spec/api/sequences_api_spec.rb +7 -7
  70. data/spec/models/activate_sequence200_response_spec.rb +42 -0
  71. data/spec/models/add_broadcast_recipients200_response_spec.rb +48 -0
  72. data/spec/models/cancel_broadcast200_response_broadcast_spec.rb +42 -0
  73. data/spec/models/cancel_broadcast200_response_spec.rb +42 -0
  74. data/spec/models/enroll_contacts200_response_spec.rb +48 -0
  75. data/spec/models/{create_sequence_request_steps_inner_message_spec.rb → get_broadcast200_response_broadcast_message_spec.rb} +6 -6
  76. data/spec/models/get_broadcast200_response_broadcast_segment_filters_spec.rb +36 -0
  77. data/spec/models/get_broadcast200_response_broadcast_spec.rb +148 -0
  78. data/spec/models/get_broadcast200_response_spec.rb +42 -0
  79. data/spec/models/get_sequence200_response_sequence_spec.rb +118 -0
  80. data/spec/models/get_sequence200_response_sequence_steps_inner_spec.rb +54 -0
  81. data/spec/models/get_sequence200_response_sequence_steps_inner_template_spec.rb +48 -0
  82. data/spec/models/get_sequence200_response_spec.rb +42 -0
  83. data/spec/models/list_broadcast_recipients200_response_recipients_inner_spec.rb +100 -0
  84. data/spec/models/list_broadcast_recipients200_response_spec.rb +48 -0
  85. data/spec/models/list_broadcasts200_response_broadcasts_inner_spec.rb +136 -0
  86. data/spec/models/list_broadcasts200_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/list_sequences200_response_sequences_inner_spec.rb +124 -0
  90. data/spec/models/list_sequences200_response_spec.rb +48 -0
  91. data/spec/models/schedule_broadcast200_response_broadcast_spec.rb +48 -0
  92. data/spec/models/schedule_broadcast200_response_spec.rb +42 -0
  93. data/spec/models/send_broadcast200_response_spec.rb +64 -0
  94. data/spec/models/update_broadcast200_response_broadcast_spec.rb +60 -0
  95. data/spec/models/update_broadcast200_response_spec.rb +42 -0
  96. data/spec/models/update_sequence200_response_sequence_spec.rb +78 -0
  97. data/spec/models/update_sequence200_response_spec.rb +42 -0
  98. data/zernio-sdk-0.0.77.gem +0 -0
  99. metadata +114 -6
  100. data/zernio-sdk-0.0.75.gem +0 -0
@@ -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,136 @@
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::ListBroadcasts200ResponseBroadcastsInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListBroadcasts200ResponseBroadcastsInner do
21
+ #let(:instance) { Late::ListBroadcasts200ResponseBroadcastsInner.new }
22
+
23
+ describe 'test an instance of ListBroadcasts200ResponseBroadcastsInner' do
24
+ it 'should create an instance of ListBroadcasts200ResponseBroadcastsInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListBroadcasts200ResponseBroadcastsInner)
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 "account_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 "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', ["draft", "scheduled", "sending", "completed", "failed", "cancelled"])
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 "message_preview"' 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 "scheduled_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 "started_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 "completed_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 "recipient_count"' 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 "sent_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 "delivered_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 "read_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 "failed_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 "created_at"' 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
+ 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::ListBroadcasts200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListBroadcasts200Response do
21
+ #let(:instance) { Late::ListBroadcasts200Response.new }
22
+
23
+ describe 'test an instance of ListBroadcasts200Response' do
24
+ it 'should create an instance of ListBroadcasts200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListBroadcasts200Response)
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 "broadcasts"' 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,124 @@
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::ListSequences200ResponseSequencesInner
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListSequences200ResponseSequencesInner do
21
+ #let(:instance) { Late::ListSequences200ResponseSequencesInner.new }
22
+
23
+ describe 'test an instance of ListSequences200ResponseSequencesInner' do
24
+ it 'should create an instance of ListSequences200ResponseSequencesInner' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListSequences200ResponseSequencesInner)
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 "account_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 "message_preview"' 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 "status"' do
73
+ it 'should work' do
74
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
+ # validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["draft", "active", "paused"])
76
+ # validator.allowable_values.each do |value|
77
+ # expect { instance.status = value }.not_to raise_error
78
+ # end
79
+ end
80
+ end
81
+
82
+ describe 'test attribute "steps_count"' 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 "exit_on_reply"' 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 "exit_on_unsubscribe"' 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_enrolled"' 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 "total_completed"' 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 "total_exited"' 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 "created_at"' 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
+ 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::ListSequences200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::ListSequences200Response do
21
+ #let(:instance) { Late::ListSequences200Response.new }
22
+
23
+ describe 'test an instance of ListSequences200Response' do
24
+ it 'should create an instance of ListSequences200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::ListSequences200Response)
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 "sequences"' 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