late-sdk 0.0.78 → 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 (103) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +28 -1
  3. data/docs/BulkCreateContacts200Response.md +26 -0
  4. data/docs/CommentAutomationsApi.md +28 -24
  5. data/docs/ContactsApi.md +42 -36
  6. data/docs/CreateCommentAutomation200Response.md +20 -0
  7. data/docs/CreateCommentAutomation200ResponseAutomation.md +38 -0
  8. data/docs/CreateCommentAutomation200ResponseAutomationStats.md +22 -0
  9. data/docs/CreateContact200Response.md +24 -0
  10. data/docs/CreateContact200ResponseChannel.md +24 -0
  11. data/docs/CreateContact200ResponseContact.md +36 -0
  12. data/docs/CreateCustomField200Response.md +20 -0
  13. data/docs/CustomFieldsApi.md +21 -18
  14. data/docs/GetBroadcast200ResponseBroadcast.md +1 -1
  15. data/docs/GetCommentAutomation200Response.md +22 -0
  16. data/docs/GetCommentAutomation200ResponseAutomation.md +46 -0
  17. data/docs/GetCommentAutomation200ResponseLogsInner.md +32 -0
  18. data/docs/GetContact200Response.md +22 -0
  19. data/docs/GetContact200ResponseChannelsInner.md +32 -0
  20. data/docs/GetContact200ResponseContact.md +42 -0
  21. data/docs/GetContactChannels200Response.md +20 -0
  22. data/docs/GetContactChannels200ResponseChannelsInner.md +34 -0
  23. data/docs/ListCommentAutomationLogs200Response.md +22 -0
  24. data/docs/ListContacts200Response.md +24 -0
  25. data/docs/ListContacts200ResponseContactsInner.md +52 -0
  26. data/docs/{GetBroadcast200ResponseBroadcastSegmentFilters.md → ListContacts200ResponseFilters.md} +2 -2
  27. data/docs/ListCustomFields200Response.md +20 -0
  28. data/docs/ListCustomFields200ResponseFieldsInner.md +28 -0
  29. data/docs/UpdateCommentAutomation200Response.md +20 -0
  30. data/docs/UpdateCommentAutomation200ResponseAutomation.md +32 -0
  31. data/docs/UpdateContact200Response.md +20 -0
  32. data/docs/UpdateContact200ResponseContact.md +36 -0
  33. data/docs/UpdateCustomField200Response.md +20 -0
  34. data/docs/UpdateCustomField200ResponseField.md +26 -0
  35. data/lib/late-sdk/api/comment_automations_api.rb +20 -20
  36. data/lib/late-sdk/api/contacts_api.rb +30 -30
  37. data/lib/late-sdk/api/custom_fields_api.rb +15 -15
  38. data/lib/late-sdk/models/bulk_create_contacts200_response.rb +185 -0
  39. data/lib/late-sdk/models/create_comment_automation200_response.rb +156 -0
  40. data/lib/late-sdk/models/create_comment_automation200_response_automation.rb +273 -0
  41. data/lib/late-sdk/models/create_comment_automation200_response_automation_stats.rb +165 -0
  42. data/lib/late-sdk/models/create_contact200_response.rb +174 -0
  43. data/lib/late-sdk/models/create_contact200_response_channel.rb +175 -0
  44. data/lib/late-sdk/models/create_contact200_response_contact.rb +230 -0
  45. data/lib/late-sdk/models/create_custom_field200_response.rb +156 -0
  46. data/lib/late-sdk/models/get_broadcast200_response_broadcast.rb +1 -1
  47. data/lib/late-sdk/models/get_comment_automation200_response.rb +167 -0
  48. data/lib/late-sdk/models/get_comment_automation200_response_automation.rb +309 -0
  49. data/lib/late-sdk/models/get_comment_automation200_response_logs_inner.rb +244 -0
  50. data/lib/late-sdk/models/get_contact200_response.rb +167 -0
  51. data/lib/late-sdk/models/get_contact200_response_channels_inner.rb +210 -0
  52. data/lib/late-sdk/models/get_contact200_response_contact.rb +259 -0
  53. data/lib/late-sdk/models/get_contact_channels200_response.rb +158 -0
  54. data/lib/late-sdk/models/get_contact_channels200_response_channels_inner.rb +219 -0
  55. data/lib/late-sdk/models/list_comment_automation_logs200_response.rb +167 -0
  56. data/lib/late-sdk/models/list_contacts200_response.rb +176 -0
  57. data/lib/late-sdk/models/list_contacts200_response_contacts_inner.rb +302 -0
  58. data/lib/late-sdk/models/{get_broadcast200_response_broadcast_segment_filters.rb → list_contacts200_response_filters.rb} +3 -3
  59. data/lib/late-sdk/models/list_custom_fields200_response.rb +158 -0
  60. data/lib/late-sdk/models/list_custom_fields200_response_fields_inner.rb +228 -0
  61. data/lib/late-sdk/models/update_comment_automation200_response.rb +156 -0
  62. data/lib/late-sdk/models/update_comment_automation200_response_automation.rb +246 -0
  63. data/lib/late-sdk/models/update_contact200_response.rb +156 -0
  64. data/lib/late-sdk/models/update_contact200_response_contact.rb +230 -0
  65. data/lib/late-sdk/models/update_custom_field200_response.rb +156 -0
  66. data/lib/late-sdk/models/update_custom_field200_response_field.rb +185 -0
  67. data/lib/late-sdk/version.rb +1 -1
  68. data/lib/late-sdk.rb +28 -1
  69. data/openapi.yaml +324 -13
  70. data/spec/api/comment_automations_api_spec.rb +4 -4
  71. data/spec/api/contacts_api_spec.rb +6 -6
  72. data/spec/api/custom_fields_api_spec.rb +3 -3
  73. data/spec/models/bulk_create_contacts200_response_spec.rb +60 -0
  74. data/spec/models/create_comment_automation200_response_automation_spec.rb +100 -0
  75. data/spec/models/create_comment_automation200_response_automation_stats_spec.rb +48 -0
  76. data/spec/models/create_comment_automation200_response_spec.rb +42 -0
  77. data/spec/models/create_contact200_response_channel_spec.rb +54 -0
  78. data/spec/models/create_contact200_response_contact_spec.rb +90 -0
  79. data/spec/models/create_contact200_response_spec.rb +54 -0
  80. data/spec/models/create_custom_field200_response_spec.rb +42 -0
  81. data/spec/models/get_comment_automation200_response_automation_spec.rb +124 -0
  82. data/spec/models/get_comment_automation200_response_logs_inner_spec.rb +82 -0
  83. data/spec/models/get_comment_automation200_response_spec.rb +48 -0
  84. data/spec/models/get_contact200_response_channels_inner_spec.rb +78 -0
  85. data/spec/models/get_contact200_response_contact_spec.rb +108 -0
  86. data/spec/models/get_contact200_response_spec.rb +48 -0
  87. data/spec/models/get_contact_channels200_response_channels_inner_spec.rb +84 -0
  88. data/spec/models/get_contact_channels200_response_spec.rb +42 -0
  89. data/spec/models/list_comment_automation_logs200_response_spec.rb +48 -0
  90. data/spec/models/list_contacts200_response_contacts_inner_spec.rb +138 -0
  91. data/spec/models/{get_broadcast200_response_broadcast_segment_filters_spec.rb → list_contacts200_response_filters_spec.rb} +6 -6
  92. data/spec/models/list_contacts200_response_spec.rb +54 -0
  93. data/spec/models/list_custom_fields200_response_fields_inner_spec.rb +70 -0
  94. data/spec/models/list_custom_fields200_response_spec.rb +42 -0
  95. data/spec/models/update_comment_automation200_response_automation_spec.rb +82 -0
  96. data/spec/models/update_comment_automation200_response_spec.rb +42 -0
  97. data/spec/models/update_contact200_response_contact_spec.rb +90 -0
  98. data/spec/models/update_contact200_response_spec.rb +42 -0
  99. data/spec/models/update_custom_field200_response_field_spec.rb +60 -0
  100. data/spec/models/update_custom_field200_response_spec.rb +42 -0
  101. data/zernio-sdk-0.0.79.gem +0 -0
  102. metadata +114 -6
  103. data/zernio-sdk-0.0.78.gem +0 -0
@@ -0,0 +1,24 @@
1
+ # Late::CreateContact200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **contact** | [**CreateContact200ResponseContact**](CreateContact200ResponseContact.md) | | [optional] |
9
+ | **channel** | [**CreateContact200ResponseChannel**](CreateContact200ResponseChannel.md) | | [optional] |
10
+ | **warning** | **String** | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'late-sdk'
16
+
17
+ instance = Late::CreateContact200Response.new(
18
+ success: null,
19
+ contact: null,
20
+ channel: null,
21
+ warning: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,24 @@
1
+ # Late::CreateContact200ResponseChannel
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **platform** | **String** | | [optional] |
9
+ | **platform_identifier** | **String** | | [optional] |
10
+ | **display_identifier** | **String** | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'late-sdk'
16
+
17
+ instance = Late::CreateContact200ResponseChannel.new(
18
+ id: null,
19
+ platform: null,
20
+ platform_identifier: null,
21
+ display_identifier: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,36 @@
1
+ # Late::CreateContact200ResponseContact
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **email** | **String** | | [optional] |
10
+ | **company** | **String** | | [optional] |
11
+ | **tags** | **Array<String>** | | [optional] |
12
+ | **is_subscribed** | **Boolean** | | [optional] |
13
+ | **is_blocked** | **Boolean** | | [optional] |
14
+ | **custom_fields** | **Object** | | [optional] |
15
+ | **notes** | **String** | | [optional] |
16
+ | **created_at** | **Time** | | [optional] |
17
+
18
+ ## Example
19
+
20
+ ```ruby
21
+ require 'late-sdk'
22
+
23
+ instance = Late::CreateContact200ResponseContact.new(
24
+ id: null,
25
+ name: null,
26
+ email: null,
27
+ company: null,
28
+ tags: null,
29
+ is_subscribed: null,
30
+ is_blocked: null,
31
+ custom_fields: null,
32
+ notes: null,
33
+ created_at: null
34
+ )
35
+ ```
36
+
@@ -0,0 +1,20 @@
1
+ # Late::CreateCustomField200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **field** | [**ListCustomFields200ResponseFieldsInner**](ListCustomFields200ResponseFieldsInner.md) | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'late-sdk'
14
+
15
+ instance = Late::CreateCustomField200Response.new(
16
+ success: null,
17
+ field: null
18
+ )
19
+ ```
20
+
@@ -82,7 +82,7 @@ nil (empty response body)
82
82
 
83
83
  ## create_custom_field
84
84
 
85
- > create_custom_field(create_custom_field_request)
85
+ > <CreateCustomField200Response> create_custom_field(create_custom_field_request)
86
86
 
87
87
  Create a custom field definition
88
88
 
@@ -102,7 +102,8 @@ create_custom_field_request = Late::CreateCustomFieldRequest.new({profile_id: 'p
102
102
 
103
103
  begin
104
104
  # Create a custom field definition
105
- api_instance.create_custom_field(create_custom_field_request)
105
+ result = api_instance.create_custom_field(create_custom_field_request)
106
+ p result
106
107
  rescue Late::ApiError => e
107
108
  puts "Error when calling CustomFieldsApi->create_custom_field: #{e}"
108
109
  end
@@ -110,9 +111,9 @@ end
110
111
 
111
112
  #### Using the create_custom_field_with_http_info variant
112
113
 
113
- This returns an Array which contains the response data (`nil` in this case), status code and headers.
114
+ This returns an Array which contains the response data, status code and headers.
114
115
 
115
- > <Array(nil, Integer, Hash)> create_custom_field_with_http_info(create_custom_field_request)
116
+ > <Array(<CreateCustomField200Response>, Integer, Hash)> create_custom_field_with_http_info(create_custom_field_request)
116
117
 
117
118
  ```ruby
118
119
  begin
@@ -120,7 +121,7 @@ begin
120
121
  data, status_code, headers = api_instance.create_custom_field_with_http_info(create_custom_field_request)
121
122
  p status_code # => 2xx
122
123
  p headers # => { ... }
123
- p data # => nil
124
+ p data # => <CreateCustomField200Response>
124
125
  rescue Late::ApiError => e
125
126
  puts "Error when calling CustomFieldsApi->create_custom_field_with_http_info: #{e}"
126
127
  end
@@ -134,7 +135,7 @@ end
134
135
 
135
136
  ### Return type
136
137
 
137
- nil (empty response body)
138
+ [**CreateCustomField200Response**](CreateCustomField200Response.md)
138
139
 
139
140
  ### Authorization
140
141
 
@@ -214,7 +215,7 @@ nil (empty response body)
214
215
 
215
216
  ## list_custom_fields
216
217
 
217
- > list_custom_fields(opts)
218
+ > <ListCustomFields200Response> list_custom_fields(opts)
218
219
 
219
220
  List custom field definitions
220
221
 
@@ -236,7 +237,8 @@ opts = {
236
237
 
237
238
  begin
238
239
  # List custom field definitions
239
- api_instance.list_custom_fields(opts)
240
+ result = api_instance.list_custom_fields(opts)
241
+ p result
240
242
  rescue Late::ApiError => e
241
243
  puts "Error when calling CustomFieldsApi->list_custom_fields: #{e}"
242
244
  end
@@ -244,9 +246,9 @@ end
244
246
 
245
247
  #### Using the list_custom_fields_with_http_info variant
246
248
 
247
- This returns an Array which contains the response data (`nil` in this case), status code and headers.
249
+ This returns an Array which contains the response data, status code and headers.
248
250
 
249
- > <Array(nil, Integer, Hash)> list_custom_fields_with_http_info(opts)
251
+ > <Array(<ListCustomFields200Response>, Integer, Hash)> list_custom_fields_with_http_info(opts)
250
252
 
251
253
  ```ruby
252
254
  begin
@@ -254,7 +256,7 @@ begin
254
256
  data, status_code, headers = api_instance.list_custom_fields_with_http_info(opts)
255
257
  p status_code # => 2xx
256
258
  p headers # => { ... }
257
- p data # => nil
259
+ p data # => <ListCustomFields200Response>
258
260
  rescue Late::ApiError => e
259
261
  puts "Error when calling CustomFieldsApi->list_custom_fields_with_http_info: #{e}"
260
262
  end
@@ -268,7 +270,7 @@ end
268
270
 
269
271
  ### Return type
270
272
 
271
- nil (empty response body)
273
+ [**ListCustomFields200Response**](ListCustomFields200Response.md)
272
274
 
273
275
  ### Authorization
274
276
 
@@ -352,7 +354,7 @@ nil (empty response body)
352
354
 
353
355
  ## update_custom_field
354
356
 
355
- > update_custom_field(field_id, opts)
357
+ > <UpdateCustomField200Response> update_custom_field(field_id, opts)
356
358
 
357
359
  Update a custom field definition
358
360
 
@@ -375,7 +377,8 @@ opts = {
375
377
 
376
378
  begin
377
379
  # Update a custom field definition
378
- api_instance.update_custom_field(field_id, opts)
380
+ result = api_instance.update_custom_field(field_id, opts)
381
+ p result
379
382
  rescue Late::ApiError => e
380
383
  puts "Error when calling CustomFieldsApi->update_custom_field: #{e}"
381
384
  end
@@ -383,9 +386,9 @@ end
383
386
 
384
387
  #### Using the update_custom_field_with_http_info variant
385
388
 
386
- This returns an Array which contains the response data (`nil` in this case), status code and headers.
389
+ This returns an Array which contains the response data, status code and headers.
387
390
 
388
- > <Array(nil, Integer, Hash)> update_custom_field_with_http_info(field_id, opts)
391
+ > <Array(<UpdateCustomField200Response>, Integer, Hash)> update_custom_field_with_http_info(field_id, opts)
389
392
 
390
393
  ```ruby
391
394
  begin
@@ -393,7 +396,7 @@ begin
393
396
  data, status_code, headers = api_instance.update_custom_field_with_http_info(field_id, opts)
394
397
  p status_code # => 2xx
395
398
  p headers # => { ... }
396
- p data # => nil
399
+ p data # => <UpdateCustomField200Response>
397
400
  rescue Late::ApiError => e
398
401
  puts "Error when calling CustomFieldsApi->update_custom_field_with_http_info: #{e}"
399
402
  end
@@ -408,7 +411,7 @@ end
408
411
 
409
412
  ### Return type
410
413
 
411
- nil (empty response body)
414
+ [**UpdateCustomField200Response**](UpdateCustomField200Response.md)
412
415
 
413
416
  ### Authorization
414
417
 
@@ -11,7 +11,7 @@
11
11
  | **account_id** | **String** | | [optional] |
12
12
  | **message** | [**GetBroadcast200ResponseBroadcastMessage**](GetBroadcast200ResponseBroadcastMessage.md) | | [optional] |
13
13
  | **template** | [**GetWhatsAppBroadcasts200ResponseBroadcastsInnerTemplate**](GetWhatsAppBroadcasts200ResponseBroadcastsInnerTemplate.md) | | [optional] |
14
- | **segment_filters** | [**GetBroadcast200ResponseBroadcastSegmentFilters**](GetBroadcast200ResponseBroadcastSegmentFilters.md) | | [optional] |
14
+ | **segment_filters** | [**ListContacts200ResponseFilters**](ListContacts200ResponseFilters.md) | | [optional] |
15
15
  | **status** | **String** | | [optional] |
16
16
  | **scheduled_at** | **Time** | | [optional] |
17
17
  | **started_at** | **Time** | | [optional] |
@@ -0,0 +1,22 @@
1
+ # Late::GetCommentAutomation200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **automation** | [**GetCommentAutomation200ResponseAutomation**](GetCommentAutomation200ResponseAutomation.md) | | [optional] |
9
+ | **logs** | [**Array&lt;GetCommentAutomation200ResponseLogsInner&gt;**](GetCommentAutomation200ResponseLogsInner.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'late-sdk'
15
+
16
+ instance = Late::GetCommentAutomation200Response.new(
17
+ success: null,
18
+ automation: null,
19
+ logs: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,46 @@
1
+ # Late::GetCommentAutomation200ResponseAutomation
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **platform** | **String** | | [optional] |
10
+ | **account_id** | **String** | | [optional] |
11
+ | **platform_post_id** | **String** | | [optional] |
12
+ | **post_id** | **String** | | [optional] |
13
+ | **post_title** | **String** | | [optional] |
14
+ | **keywords** | **Array&lt;String&gt;** | | [optional] |
15
+ | **match_mode** | **String** | | [optional] |
16
+ | **dm_message** | **String** | | [optional] |
17
+ | **comment_reply** | **String** | | [optional] |
18
+ | **is_active** | **Boolean** | | [optional] |
19
+ | **stats** | [**CreateCommentAutomation200ResponseAutomationStats**](CreateCommentAutomation200ResponseAutomationStats.md) | | [optional] |
20
+ | **created_at** | **Time** | | [optional] |
21
+ | **updated_at** | **Time** | | [optional] |
22
+
23
+ ## Example
24
+
25
+ ```ruby
26
+ require 'late-sdk'
27
+
28
+ instance = Late::GetCommentAutomation200ResponseAutomation.new(
29
+ id: null,
30
+ name: null,
31
+ platform: null,
32
+ account_id: null,
33
+ platform_post_id: null,
34
+ post_id: null,
35
+ post_title: null,
36
+ keywords: null,
37
+ match_mode: null,
38
+ dm_message: null,
39
+ comment_reply: null,
40
+ is_active: null,
41
+ stats: null,
42
+ created_at: null,
43
+ updated_at: null
44
+ )
45
+ ```
46
+
@@ -0,0 +1,32 @@
1
+ # Late::GetCommentAutomation200ResponseLogsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **comment_id** | **String** | | [optional] |
9
+ | **commenter_id** | **String** | | [optional] |
10
+ | **commenter_name** | **String** | | [optional] |
11
+ | **comment_text** | **String** | | [optional] |
12
+ | **status** | **String** | | [optional] |
13
+ | **error** | **String** | | [optional] |
14
+ | **created_at** | **Time** | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'late-sdk'
20
+
21
+ instance = Late::GetCommentAutomation200ResponseLogsInner.new(
22
+ id: null,
23
+ comment_id: null,
24
+ commenter_id: null,
25
+ commenter_name: null,
26
+ comment_text: null,
27
+ status: null,
28
+ error: null,
29
+ created_at: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,22 @@
1
+ # Late::GetContact200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **contact** | [**GetContact200ResponseContact**](GetContact200ResponseContact.md) | | [optional] |
9
+ | **channels** | [**Array&lt;GetContact200ResponseChannelsInner&gt;**](GetContact200ResponseChannelsInner.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'late-sdk'
15
+
16
+ instance = Late::GetContact200Response.new(
17
+ success: null,
18
+ contact: null,
19
+ channels: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,32 @@
1
+ # Late::GetContact200ResponseChannelsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **account_id** | **String** | | [optional] |
9
+ | **platform** | **String** | | [optional] |
10
+ | **platform_identifier** | **String** | | [optional] |
11
+ | **display_identifier** | **String** | | [optional] |
12
+ | **is_subscribed** | **Boolean** | | [optional] |
13
+ | **conversation_id** | **String** | | [optional] |
14
+ | **created_at** | **Time** | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'late-sdk'
20
+
21
+ instance = Late::GetContact200ResponseChannelsInner.new(
22
+ id: null,
23
+ account_id: null,
24
+ platform: null,
25
+ platform_identifier: null,
26
+ display_identifier: null,
27
+ is_subscribed: null,
28
+ conversation_id: null,
29
+ created_at: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,42 @@
1
+ # Late::GetContact200ResponseContact
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **email** | **String** | | [optional] |
10
+ | **company** | **String** | | [optional] |
11
+ | **avatar_url** | **String** | | [optional] |
12
+ | **tags** | **Array&lt;String&gt;** | | [optional] |
13
+ | **is_subscribed** | **Boolean** | | [optional] |
14
+ | **is_blocked** | **Boolean** | | [optional] |
15
+ | **custom_fields** | **Object** | | [optional] |
16
+ | **notes** | **String** | | [optional] |
17
+ | **conversation_ids** | **Array&lt;String&gt;** | | [optional] |
18
+ | **created_at** | **Time** | | [optional] |
19
+ | **updated_at** | **Time** | | [optional] |
20
+
21
+ ## Example
22
+
23
+ ```ruby
24
+ require 'late-sdk'
25
+
26
+ instance = Late::GetContact200ResponseContact.new(
27
+ id: null,
28
+ name: null,
29
+ email: null,
30
+ company: null,
31
+ avatar_url: null,
32
+ tags: null,
33
+ is_subscribed: null,
34
+ is_blocked: null,
35
+ custom_fields: null,
36
+ notes: null,
37
+ conversation_ids: null,
38
+ created_at: null,
39
+ updated_at: null
40
+ )
41
+ ```
42
+
@@ -0,0 +1,20 @@
1
+ # Late::GetContactChannels200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **channels** | [**Array&lt;GetContactChannels200ResponseChannelsInner&gt;**](GetContactChannels200ResponseChannelsInner.md) | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'late-sdk'
14
+
15
+ instance = Late::GetContactChannels200Response.new(
16
+ success: null,
17
+ channels: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,34 @@
1
+ # Late::GetContactChannels200ResponseChannelsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **account_id** | **String** | | [optional] |
9
+ | **platform** | **String** | | [optional] |
10
+ | **platform_identifier** | **String** | | [optional] |
11
+ | **display_identifier** | **String** | | [optional] |
12
+ | **is_subscribed** | **Boolean** | | [optional] |
13
+ | **conversation_id** | **String** | | [optional] |
14
+ | **metadata** | **Object** | | [optional] |
15
+ | **created_at** | **Time** | | [optional] |
16
+
17
+ ## Example
18
+
19
+ ```ruby
20
+ require 'late-sdk'
21
+
22
+ instance = Late::GetContactChannels200ResponseChannelsInner.new(
23
+ id: null,
24
+ account_id: null,
25
+ platform: null,
26
+ platform_identifier: null,
27
+ display_identifier: null,
28
+ is_subscribed: null,
29
+ conversation_id: null,
30
+ metadata: null,
31
+ created_at: null
32
+ )
33
+ ```
34
+
@@ -0,0 +1,22 @@
1
+ # Late::ListCommentAutomationLogs200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **logs** | [**Array&lt;GetCommentAutomation200ResponseLogsInner&gt;**](GetCommentAutomation200ResponseLogsInner.md) | | [optional] |
9
+ | **pagination** | [**GetWhatsAppContacts200ResponsePagination**](GetWhatsAppContacts200ResponsePagination.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'late-sdk'
15
+
16
+ instance = Late::ListCommentAutomationLogs200Response.new(
17
+ success: null,
18
+ logs: null,
19
+ pagination: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,24 @@
1
+ # Late::ListContacts200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **contacts** | [**Array&lt;ListContacts200ResponseContactsInner&gt;**](ListContacts200ResponseContactsInner.md) | | [optional] |
9
+ | **filters** | [**ListContacts200ResponseFilters**](ListContacts200ResponseFilters.md) | | [optional] |
10
+ | **pagination** | [**GetWhatsAppContacts200ResponsePagination**](GetWhatsAppContacts200ResponsePagination.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'late-sdk'
16
+
17
+ instance = Late::ListContacts200Response.new(
18
+ success: null,
19
+ contacts: null,
20
+ filters: null,
21
+ pagination: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,52 @@
1
+ # Late::ListContacts200ResponseContactsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **email** | **String** | | [optional] |
10
+ | **company** | **String** | | [optional] |
11
+ | **avatar_url** | **String** | | [optional] |
12
+ | **tags** | **Array&lt;String&gt;** | | [optional] |
13
+ | **is_subscribed** | **Boolean** | | [optional] |
14
+ | **is_blocked** | **Boolean** | | [optional] |
15
+ | **last_message_sent_at** | **Time** | | [optional] |
16
+ | **last_message_received_at** | **Time** | | [optional] |
17
+ | **messages_sent_count** | **Integer** | | [optional] |
18
+ | **messages_received_count** | **Integer** | | [optional] |
19
+ | **custom_fields** | **Object** | | [optional] |
20
+ | **notes** | **String** | | [optional] |
21
+ | **created_at** | **Time** | | [optional] |
22
+ | **platform** | **String** | | [optional] |
23
+ | **platform_identifier** | **String** | | [optional] |
24
+ | **display_identifier** | **String** | | [optional] |
25
+
26
+ ## Example
27
+
28
+ ```ruby
29
+ require 'late-sdk'
30
+
31
+ instance = Late::ListContacts200ResponseContactsInner.new(
32
+ id: null,
33
+ name: null,
34
+ email: null,
35
+ company: null,
36
+ avatar_url: null,
37
+ tags: null,
38
+ is_subscribed: null,
39
+ is_blocked: null,
40
+ last_message_sent_at: null,
41
+ last_message_received_at: null,
42
+ messages_sent_count: null,
43
+ messages_received_count: null,
44
+ custom_fields: null,
45
+ notes: null,
46
+ created_at: null,
47
+ platform: null,
48
+ platform_identifier: null,
49
+ display_identifier: null
50
+ )
51
+ ```
52
+
@@ -1,4 +1,4 @@
1
- # Late::GetBroadcast200ResponseBroadcastSegmentFilters
1
+ # Late::ListContacts200ResponseFilters
2
2
 
3
3
  ## Properties
4
4
 
@@ -11,7 +11,7 @@
11
11
  ```ruby
12
12
  require 'late-sdk'
13
13
 
14
- instance = Late::GetBroadcast200ResponseBroadcastSegmentFilters.new(
14
+ instance = Late::ListContacts200ResponseFilters.new(
15
15
  tags: null
16
16
  )
17
17
  ```
@@ -0,0 +1,20 @@
1
+ # Late::ListCustomFields200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **success** | **Boolean** | | [optional] |
8
+ | **fields** | [**Array&lt;ListCustomFields200ResponseFieldsInner&gt;**](ListCustomFields200ResponseFieldsInner.md) | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'late-sdk'
14
+
15
+ instance = Late::ListCustomFields200Response.new(
16
+ success: null,
17
+ fields: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,28 @@
1
+ # Late::ListCustomFields200ResponseFieldsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **id** | **String** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **slug** | **String** | | [optional] |
10
+ | **type** | **String** | | [optional] |
11
+ | **options** | **Array&lt;String&gt;** | | [optional] |
12
+ | **created_at** | **Time** | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'late-sdk'
18
+
19
+ instance = Late::ListCustomFields200ResponseFieldsInner.new(
20
+ id: null,
21
+ name: null,
22
+ slug: null,
23
+ type: null,
24
+ options: null,
25
+ created_at: null
26
+ )
27
+ ```
28
+