late-sdk 0.0.77 → 0.0.79

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 (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +32 -1
  3. data/docs/BroadcastsApi.md +7 -6
  4. data/docs/BulkCreateContacts200Response.md +26 -0
  5. data/docs/CommentAutomationsApi.md +28 -24
  6. data/docs/ContactsApi.md +42 -36
  7. data/docs/CreateBroadcast200Response.md +20 -0
  8. data/docs/CreateBroadcast200ResponseBroadcast.md +30 -0
  9. data/docs/CreateCommentAutomation200Response.md +20 -0
  10. data/docs/CreateCommentAutomation200ResponseAutomation.md +38 -0
  11. data/docs/CreateCommentAutomation200ResponseAutomationStats.md +22 -0
  12. data/docs/CreateContact200Response.md +24 -0
  13. data/docs/CreateContact200ResponseChannel.md +24 -0
  14. data/docs/CreateContact200ResponseContact.md +36 -0
  15. data/docs/CreateCustomField200Response.md +20 -0
  16. data/docs/CreateSequence200Response.md +20 -0
  17. data/docs/CreateSequence200ResponseSequence.md +30 -0
  18. data/docs/CustomFieldsApi.md +21 -18
  19. data/docs/GetBroadcast200ResponseBroadcast.md +1 -1
  20. data/docs/GetCommentAutomation200Response.md +22 -0
  21. data/docs/GetCommentAutomation200ResponseAutomation.md +46 -0
  22. data/docs/GetCommentAutomation200ResponseLogsInner.md +32 -0
  23. data/docs/GetContact200Response.md +22 -0
  24. data/docs/GetContact200ResponseChannelsInner.md +32 -0
  25. data/docs/GetContact200ResponseContact.md +42 -0
  26. data/docs/GetContactChannels200Response.md +20 -0
  27. data/docs/GetContactChannels200ResponseChannelsInner.md +34 -0
  28. data/docs/ListCommentAutomationLogs200Response.md +22 -0
  29. data/docs/ListContacts200Response.md +24 -0
  30. data/docs/ListContacts200ResponseContactsInner.md +52 -0
  31. data/docs/{GetBroadcast200ResponseBroadcastSegmentFilters.md → ListContacts200ResponseFilters.md} +2 -2
  32. data/docs/ListCustomFields200Response.md +20 -0
  33. data/docs/ListCustomFields200ResponseFieldsInner.md +28 -0
  34. data/docs/SequencesApi.md +7 -6
  35. data/docs/UpdateCommentAutomation200Response.md +20 -0
  36. data/docs/UpdateCommentAutomation200ResponseAutomation.md +32 -0
  37. data/docs/UpdateContact200Response.md +20 -0
  38. data/docs/UpdateContact200ResponseContact.md +36 -0
  39. data/docs/UpdateCustomField200Response.md +20 -0
  40. data/docs/UpdateCustomField200ResponseField.md +26 -0
  41. data/lib/late-sdk/api/broadcasts_api.rb +5 -5
  42. data/lib/late-sdk/api/comment_automations_api.rb +20 -20
  43. data/lib/late-sdk/api/contacts_api.rb +30 -30
  44. data/lib/late-sdk/api/custom_fields_api.rb +15 -15
  45. data/lib/late-sdk/api/sequences_api.rb +5 -5
  46. data/lib/late-sdk/models/bulk_create_contacts200_response.rb +185 -0
  47. data/lib/late-sdk/models/create_broadcast200_response.rb +156 -0
  48. data/lib/late-sdk/models/create_broadcast200_response_broadcast.rb +201 -0
  49. data/lib/late-sdk/models/create_comment_automation200_response.rb +156 -0
  50. data/lib/late-sdk/models/create_comment_automation200_response_automation.rb +273 -0
  51. data/lib/late-sdk/models/create_comment_automation200_response_automation_stats.rb +165 -0
  52. data/lib/late-sdk/models/create_contact200_response.rb +174 -0
  53. data/lib/late-sdk/models/create_contact200_response_channel.rb +175 -0
  54. data/lib/late-sdk/models/create_contact200_response_contact.rb +230 -0
  55. data/lib/late-sdk/models/create_custom_field200_response.rb +156 -0
  56. data/lib/late-sdk/models/create_sequence200_response.rb +156 -0
  57. data/lib/late-sdk/models/create_sequence200_response_sequence.rb +201 -0
  58. data/lib/late-sdk/models/get_broadcast200_response_broadcast.rb +1 -1
  59. data/lib/late-sdk/models/get_comment_automation200_response.rb +167 -0
  60. data/lib/late-sdk/models/get_comment_automation200_response_automation.rb +309 -0
  61. data/lib/late-sdk/models/get_comment_automation200_response_logs_inner.rb +244 -0
  62. data/lib/late-sdk/models/get_contact200_response.rb +167 -0
  63. data/lib/late-sdk/models/get_contact200_response_channels_inner.rb +210 -0
  64. data/lib/late-sdk/models/get_contact200_response_contact.rb +259 -0
  65. data/lib/late-sdk/models/get_contact_channels200_response.rb +158 -0
  66. data/lib/late-sdk/models/get_contact_channels200_response_channels_inner.rb +219 -0
  67. data/lib/late-sdk/models/list_comment_automation_logs200_response.rb +167 -0
  68. data/lib/late-sdk/models/list_contacts200_response.rb +176 -0
  69. data/lib/late-sdk/models/list_contacts200_response_contacts_inner.rb +302 -0
  70. data/lib/late-sdk/models/{get_broadcast200_response_broadcast_segment_filters.rb → list_contacts200_response_filters.rb} +3 -3
  71. data/lib/late-sdk/models/list_custom_fields200_response.rb +158 -0
  72. data/lib/late-sdk/models/list_custom_fields200_response_fields_inner.rb +228 -0
  73. data/lib/late-sdk/models/update_comment_automation200_response.rb +156 -0
  74. data/lib/late-sdk/models/update_comment_automation200_response_automation.rb +246 -0
  75. data/lib/late-sdk/models/update_contact200_response.rb +156 -0
  76. data/lib/late-sdk/models/update_contact200_response_contact.rb +230 -0
  77. data/lib/late-sdk/models/update_custom_field200_response.rb +156 -0
  78. data/lib/late-sdk/models/update_custom_field200_response_field.rb +185 -0
  79. data/lib/late-sdk/version.rb +1 -1
  80. data/lib/late-sdk.rb +32 -1
  81. data/openapi.yaml +360 -15
  82. data/spec/api/broadcasts_api_spec.rb +1 -1
  83. data/spec/api/comment_automations_api_spec.rb +4 -4
  84. data/spec/api/contacts_api_spec.rb +6 -6
  85. data/spec/api/custom_fields_api_spec.rb +3 -3
  86. data/spec/api/sequences_api_spec.rb +1 -1
  87. data/spec/models/bulk_create_contacts200_response_spec.rb +60 -0
  88. data/spec/models/create_broadcast200_response_broadcast_spec.rb +72 -0
  89. data/spec/models/create_broadcast200_response_spec.rb +42 -0
  90. data/spec/models/create_comment_automation200_response_automation_spec.rb +100 -0
  91. data/spec/models/create_comment_automation200_response_automation_stats_spec.rb +48 -0
  92. data/spec/models/create_comment_automation200_response_spec.rb +42 -0
  93. data/spec/models/create_contact200_response_channel_spec.rb +54 -0
  94. data/spec/models/create_contact200_response_contact_spec.rb +90 -0
  95. data/spec/models/create_contact200_response_spec.rb +54 -0
  96. data/spec/models/create_custom_field200_response_spec.rb +42 -0
  97. data/spec/models/create_sequence200_response_sequence_spec.rb +72 -0
  98. data/spec/models/create_sequence200_response_spec.rb +42 -0
  99. data/spec/models/get_comment_automation200_response_automation_spec.rb +124 -0
  100. data/spec/models/get_comment_automation200_response_logs_inner_spec.rb +82 -0
  101. data/spec/models/get_comment_automation200_response_spec.rb +48 -0
  102. data/spec/models/get_contact200_response_channels_inner_spec.rb +78 -0
  103. data/spec/models/get_contact200_response_contact_spec.rb +108 -0
  104. data/spec/models/get_contact200_response_spec.rb +48 -0
  105. data/spec/models/get_contact_channels200_response_channels_inner_spec.rb +84 -0
  106. data/spec/models/get_contact_channels200_response_spec.rb +42 -0
  107. data/spec/models/list_comment_automation_logs200_response_spec.rb +48 -0
  108. data/spec/models/list_contacts200_response_contacts_inner_spec.rb +138 -0
  109. data/spec/models/{get_broadcast200_response_broadcast_segment_filters_spec.rb → list_contacts200_response_filters_spec.rb} +6 -6
  110. data/spec/models/list_contacts200_response_spec.rb +54 -0
  111. data/spec/models/list_custom_fields200_response_fields_inner_spec.rb +70 -0
  112. data/spec/models/list_custom_fields200_response_spec.rb +42 -0
  113. data/spec/models/update_comment_automation200_response_automation_spec.rb +82 -0
  114. data/spec/models/update_comment_automation200_response_spec.rb +42 -0
  115. data/spec/models/update_contact200_response_contact_spec.rb +90 -0
  116. data/spec/models/update_contact200_response_spec.rb +42 -0
  117. data/spec/models/update_custom_field200_response_field_spec.rb +60 -0
  118. data/spec/models/update_custom_field200_response_spec.rb +42 -0
  119. data/zernio-sdk-0.0.79.gem +0 -0
  120. metadata +130 -6
  121. data/zernio-sdk-0.0.77.gem +0 -0
@@ -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,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::CreateCommentAutomation200ResponseAutomation
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateCommentAutomation200ResponseAutomation do
21
+ #let(:instance) { Late::CreateCommentAutomation200ResponseAutomation.new }
22
+
23
+ describe 'test an instance of CreateCommentAutomation200ResponseAutomation' do
24
+ it 'should create an instance of CreateCommentAutomation200ResponseAutomation' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateCommentAutomation200ResponseAutomation)
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 "platform"' 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_post_id"' 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 "keywords"' 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 "match_mode"' 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', ["exact", "contains"])
64
+ # validator.allowable_values.each do |value|
65
+ # expect { instance.match_mode = value }.not_to raise_error
66
+ # end
67
+ end
68
+ end
69
+
70
+ describe 'test attribute "dm_message"' 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 "comment_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 "is_active"' 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 "stats"' 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 "created_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::CreateCommentAutomation200ResponseAutomationStats
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateCommentAutomation200ResponseAutomationStats do
21
+ #let(:instance) { Late::CreateCommentAutomation200ResponseAutomationStats.new }
22
+
23
+ describe 'test an instance of CreateCommentAutomation200ResponseAutomationStats' do
24
+ it 'should create an instance of CreateCommentAutomation200ResponseAutomationStats' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateCommentAutomation200ResponseAutomationStats)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "total_triggered"' 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 "total_sent"' 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 "total_failed"' 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::CreateCommentAutomation200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateCommentAutomation200Response do
21
+ #let(:instance) { Late::CreateCommentAutomation200Response.new }
22
+
23
+ describe 'test an instance of CreateCommentAutomation200Response' do
24
+ it 'should create an instance of CreateCommentAutomation200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateCommentAutomation200Response)
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 "automation"' 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,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::CreateContact200ResponseChannel
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateContact200ResponseChannel do
21
+ #let(:instance) { Late::CreateContact200ResponseChannel.new }
22
+
23
+ describe 'test an instance of CreateContact200ResponseChannel' do
24
+ it 'should create an instance of CreateContact200ResponseChannel' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateContact200ResponseChannel)
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 "platform"' 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 "platform_identifier"' 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 "display_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
+ end
@@ -0,0 +1,90 @@
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::CreateContact200ResponseContact
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateContact200ResponseContact do
21
+ #let(:instance) { Late::CreateContact200ResponseContact.new }
22
+
23
+ describe 'test an instance of CreateContact200ResponseContact' do
24
+ it 'should create an instance of CreateContact200ResponseContact' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateContact200ResponseContact)
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 "email"' 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 "company"' 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 "tags"' 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 "is_subscribed"' 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 "is_blocked"' 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 "custom_fields"' 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 "notes"' do
79
+ it 'should work' do
80
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
81
+ end
82
+ end
83
+
84
+ describe 'test attribute "created_at"' do
85
+ it 'should work' do
86
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
+ end
88
+ end
89
+
90
+ 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::CreateContact200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateContact200Response do
21
+ #let(:instance) { Late::CreateContact200Response.new }
22
+
23
+ describe 'test an instance of CreateContact200Response' do
24
+ it 'should create an instance of CreateContact200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateContact200Response)
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 "contact"' 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"' 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 "warning"' 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,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::CreateCustomField200Response
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Late::CreateCustomField200Response do
21
+ #let(:instance) { Late::CreateCustomField200Response.new }
22
+
23
+ describe 'test an instance of CreateCustomField200Response' do
24
+ it 'should create an instance of CreateCustomField200Response' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Late::CreateCustomField200Response)
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 "field"' 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