late-sdk 0.0.51 → 0.0.53
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.
- checksums.yaml +4 -4
- data/README.md +32 -0
- data/docs/AnalyticsListResponsePostsInner.md +1 -1
- data/docs/AnalyticsSinglePostResponse.md +7 -1
- data/docs/AnalyticsSinglePostResponseMediaItemsInner.md +22 -0
- data/docs/BookmarkPost200Response.md +24 -0
- data/docs/BookmarkPostRequest.md +20 -0
- data/docs/CommentsApi.md +2 -2
- data/docs/FollowUser200Response.md +26 -0
- data/docs/FollowUserRequest.md +20 -0
- data/docs/GMBLocationDetailsApi.md +4 -4
- data/docs/GbpFreeFormServiceItemLabel.md +20 -0
- data/docs/GbpUpdateFreeFormServiceItemLabel.md +20 -0
- data/docs/GetGoogleBusinessLocationDetails200Response.md +5 -1
- data/docs/GetGoogleBusinessLocationDetails200ResponseCategories.md +20 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner.md +20 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory.md +20 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInner.md +22 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem.md +20 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice.md +22 -0
- data/docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem.md +20 -0
- data/docs/RemoveBookmark200Response.md +24 -0
- data/docs/RetweetPost200Response.md +24 -0
- data/docs/RetweetPostRequest.md +20 -0
- data/docs/TwitterEngagementApi.md +433 -0
- data/docs/UndoRetweet200Response.md +24 -0
- data/docs/UnfollowUser200Response.md +24 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequest.md +6 -2
- data/docs/UpdateGoogleBusinessLocationDetailsRequestCategories.md +20 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestCategoriesAdditionalCategoriesInner.md +18 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestCategoriesPrimaryCategory.md +18 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInner.md +22 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerFreeFormServiceItem.md +20 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerPrice.md +22 -0
- data/docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerStructuredServiceItem.md +20 -0
- data/docs/UsageStats.md +2 -0
- data/lib/late-sdk/api/comments_api.rb +4 -4
- data/lib/late-sdk/api/gmb_location_details_api.rb +6 -6
- data/lib/late-sdk/api/twitter_engagement_api.rb +439 -0
- data/lib/late-sdk/models/analytics_list_response_posts_inner.rb +4 -3
- data/lib/late-sdk/models/analytics_single_post_response.rb +68 -4
- data/lib/late-sdk/models/analytics_single_post_response_media_items_inner.rb +201 -0
- data/lib/late-sdk/models/bookmark_post200_response.rb +174 -0
- data/lib/late-sdk/models/bookmark_post_request.rb +192 -0
- data/lib/late-sdk/models/follow_user200_response.rb +184 -0
- data/lib/late-sdk/models/follow_user_request.rb +192 -0
- data/lib/late-sdk/models/gbp_free_form_service_item_label.rb +156 -0
- data/lib/late-sdk/models/gbp_update_free_form_service_item_label.rb +158 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response.rb +25 -4
- data/lib/late-sdk/models/get_google_business_location_details200_response_categories.rb +159 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_categories_additional_categories_inner.rb +156 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_categories_primary_category.rb +158 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_service_items_inner.rb +165 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_service_items_inner_free_form_service_item.rb +156 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_service_items_inner_price.rb +165 -0
- data/lib/late-sdk/models/get_google_business_location_details200_response_service_items_inner_structured_service_item.rb +156 -0
- data/lib/late-sdk/models/remove_bookmark200_response.rb +174 -0
- data/lib/late-sdk/models/retweet_post200_response.rb +174 -0
- data/lib/late-sdk/models/retweet_post_request.rb +192 -0
- data/lib/late-sdk/models/undo_retweet200_response.rb +174 -0
- data/lib/late-sdk/models/unfollow_user200_response.rb +174 -0
- data/lib/late-sdk/models/update_google_business_location_details_request.rb +26 -5
- data/lib/late-sdk/models/update_google_business_location_details_request_categories.rb +159 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_categories_additional_categories_inner.rb +148 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_categories_primary_category.rb +148 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_service_items_inner.rb +165 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_service_items_inner_free_form_service_item.rb +158 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_service_items_inner_price.rb +169 -0
- data/lib/late-sdk/models/update_google_business_location_details_request_service_items_inner_structured_service_item.rb +159 -0
- data/lib/late-sdk/models/usage_stats.rb +11 -1
- data/lib/late-sdk/version.rb +1 -1
- data/lib/late-sdk.rb +27 -0
- data/openapi.yaml +408 -29
- data/spec/api/comments_api_spec.rb +2 -2
- data/spec/api/gmb_location_details_api_spec.rb +3 -3
- data/spec/api/twitter_engagement_api_spec.rb +110 -0
- data/spec/models/analytics_list_response_posts_inner_spec.rb +1 -1
- data/spec/models/analytics_single_post_response_media_items_inner_spec.rb +52 -0
- data/spec/models/analytics_single_post_response_spec.rb +22 -0
- data/spec/models/bookmark_post200_response_spec.rb +54 -0
- data/spec/models/bookmark_post_request_spec.rb +42 -0
- data/spec/models/follow_user200_response_spec.rb +60 -0
- data/spec/models/follow_user_request_spec.rb +42 -0
- data/spec/models/gbp_free_form_service_item_label_spec.rb +42 -0
- data/spec/models/gbp_update_free_form_service_item_label_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_categories_additional_categories_inner_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_categories_primary_category_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_categories_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_service_items_inner_free_form_service_item_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_service_items_inner_price_spec.rb +48 -0
- data/spec/models/get_google_business_location_details200_response_service_items_inner_spec.rb +48 -0
- data/spec/models/get_google_business_location_details200_response_service_items_inner_structured_service_item_spec.rb +42 -0
- data/spec/models/get_google_business_location_details200_response_spec.rb +12 -0
- data/spec/models/remove_bookmark200_response_spec.rb +54 -0
- data/spec/models/retweet_post200_response_spec.rb +54 -0
- data/spec/models/retweet_post_request_spec.rb +42 -0
- data/spec/models/undo_retweet200_response_spec.rb +54 -0
- data/spec/models/unfollow_user200_response_spec.rb +54 -0
- data/spec/models/update_google_business_location_details_request_categories_additional_categories_inner_spec.rb +36 -0
- data/spec/models/update_google_business_location_details_request_categories_primary_category_spec.rb +36 -0
- data/spec/models/update_google_business_location_details_request_categories_spec.rb +42 -0
- data/spec/models/update_google_business_location_details_request_service_items_inner_free_form_service_item_spec.rb +42 -0
- data/spec/models/update_google_business_location_details_request_service_items_inner_price_spec.rb +48 -0
- data/spec/models/update_google_business_location_details_request_service_items_inner_spec.rb +48 -0
- data/spec/models/update_google_business_location_details_request_service_items_inner_structured_service_item_spec.rb +42 -0
- data/spec/models/update_google_business_location_details_request_spec.rb +12 -0
- data/spec/models/usage_stats_spec.rb +6 -0
- metadata +110 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68cf9c35dd28ee26a9f9620d58e94d4e735cd89330adf848fd92d7b790147a21
|
|
4
|
+
data.tar.gz: 944a1c4126c812ab0387acf1e8ce7534abd619d5362cef0451e55fcf6f0db970
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8dabed73f4081cb46b412c67c34fb235f9a333ce19a5d13b77761eb020f462e9ab9f74946233842be06123d40a869a77577ba206a59396940be3eed8a772200e
|
|
7
|
+
data.tar.gz: 62cfacb17bf8eab9d8c8cd5009dfd76865bc607f61c37d22a2f21f71e993b1feb15b052f2803b88194b39c984e150add0ebdee1ff3f0b2eaabb1d5a5103bd314
|
data/README.md
CHANGED
|
@@ -193,6 +193,12 @@ Class | Method | HTTP request | Description
|
|
|
193
193
|
*Late::ToolsApi* | [**download_twitter_media**](docs/ToolsApi.md#download_twitter_media) | **GET** /v1/tools/twitter/download | Download Twitter/X media
|
|
194
194
|
*Late::ToolsApi* | [**download_you_tube_video**](docs/ToolsApi.md#download_you_tube_video) | **GET** /v1/tools/youtube/download | Download YouTube video
|
|
195
195
|
*Late::ToolsApi* | [**get_you_tube_transcript**](docs/ToolsApi.md#get_you_tube_transcript) | **GET** /v1/tools/youtube/transcript | Get YouTube transcript
|
|
196
|
+
*Late::TwitterEngagementApi* | [**bookmark_post**](docs/TwitterEngagementApi.md#bookmark_post) | **POST** /v1/twitter/bookmark | Bookmark a tweet
|
|
197
|
+
*Late::TwitterEngagementApi* | [**follow_user**](docs/TwitterEngagementApi.md#follow_user) | **POST** /v1/twitter/follow | Follow a user
|
|
198
|
+
*Late::TwitterEngagementApi* | [**remove_bookmark**](docs/TwitterEngagementApi.md#remove_bookmark) | **DELETE** /v1/twitter/bookmark | Remove bookmark
|
|
199
|
+
*Late::TwitterEngagementApi* | [**retweet_post**](docs/TwitterEngagementApi.md#retweet_post) | **POST** /v1/twitter/retweet | Retweet a post
|
|
200
|
+
*Late::TwitterEngagementApi* | [**undo_retweet**](docs/TwitterEngagementApi.md#undo_retweet) | **DELETE** /v1/twitter/retweet | Undo retweet
|
|
201
|
+
*Late::TwitterEngagementApi* | [**unfollow_user**](docs/TwitterEngagementApi.md#unfollow_user) | **DELETE** /v1/twitter/follow | Unfollow a user
|
|
196
202
|
*Late::UsageApi* | [**get_usage_stats**](docs/UsageApi.md#get_usage_stats) | **GET** /v1/usage-stats | Get plan and usage stats
|
|
197
203
|
*Late::UsersApi* | [**get_user**](docs/UsersApi.md#get_user) | **GET** /v1/users/{userId} | Get user
|
|
198
204
|
*Late::UsersApi* | [**list_users**](docs/UsersApi.md#list_users) | **GET** /v1/users | List users
|
|
@@ -257,9 +263,12 @@ Class | Method | HTTP request | Description
|
|
|
257
263
|
- [Late::AnalyticsListResponsePostsInner](docs/AnalyticsListResponsePostsInner.md)
|
|
258
264
|
- [Late::AnalyticsOverview](docs/AnalyticsOverview.md)
|
|
259
265
|
- [Late::AnalyticsSinglePostResponse](docs/AnalyticsSinglePostResponse.md)
|
|
266
|
+
- [Late::AnalyticsSinglePostResponseMediaItemsInner](docs/AnalyticsSinglePostResponseMediaItemsInner.md)
|
|
260
267
|
- [Late::ApiKey](docs/ApiKey.md)
|
|
261
268
|
- [Late::ApiKeyProfileIdsInner](docs/ApiKeyProfileIdsInner.md)
|
|
262
269
|
- [Late::BlueskyPlatformData](docs/BlueskyPlatformData.md)
|
|
270
|
+
- [Late::BookmarkPost200Response](docs/BookmarkPost200Response.md)
|
|
271
|
+
- [Late::BookmarkPostRequest](docs/BookmarkPostRequest.md)
|
|
263
272
|
- [Late::BulkDeleteWhatsAppContacts200Response](docs/BulkDeleteWhatsAppContacts200Response.md)
|
|
264
273
|
- [Late::BulkDeleteWhatsAppContactsRequest](docs/BulkDeleteWhatsAppContactsRequest.md)
|
|
265
274
|
- [Late::BulkUpdateWhatsAppContacts200Response](docs/BulkUpdateWhatsAppContacts200Response.md)
|
|
@@ -344,6 +353,8 @@ Class | Method | HTTP request | Description
|
|
|
344
353
|
- [Late::ErrorResponse](docs/ErrorResponse.md)
|
|
345
354
|
- [Late::Expired](docs/Expired.md)
|
|
346
355
|
- [Late::FacebookPlatformData](docs/FacebookPlatformData.md)
|
|
356
|
+
- [Late::FollowUser200Response](docs/FollowUser200Response.md)
|
|
357
|
+
- [Late::FollowUserRequest](docs/FollowUserRequest.md)
|
|
347
358
|
- [Late::FollowerStatsResponse](docs/FollowerStatsResponse.md)
|
|
348
359
|
- [Late::FoodMenu](docs/FoodMenu.md)
|
|
349
360
|
- [Late::FoodMenuItem](docs/FoodMenuItem.md)
|
|
@@ -351,8 +362,10 @@ Class | Method | HTTP request | Description
|
|
|
351
362
|
- [Late::FoodMenuItemOptionsInner](docs/FoodMenuItemOptionsInner.md)
|
|
352
363
|
- [Late::FoodMenuLabel](docs/FoodMenuLabel.md)
|
|
353
364
|
- [Late::FoodMenuSection](docs/FoodMenuSection.md)
|
|
365
|
+
- [Late::GbpFreeFormServiceItemLabel](docs/GbpFreeFormServiceItemLabel.md)
|
|
354
366
|
- [Late::GbpSpecialHourPeriod](docs/GbpSpecialHourPeriod.md)
|
|
355
367
|
- [Late::GbpSpecialHourPeriodStartDate](docs/GbpSpecialHourPeriodStartDate.md)
|
|
368
|
+
- [Late::GbpUpdateFreeFormServiceItemLabel](docs/GbpUpdateFreeFormServiceItemLabel.md)
|
|
356
369
|
- [Late::GetAccountHealth200Response](docs/GetAccountHealth200Response.md)
|
|
357
370
|
- [Late::GetAccountHealth200ResponsePermissions](docs/GetAccountHealth200ResponsePermissions.md)
|
|
358
371
|
- [Late::GetAccountHealth200ResponsePermissionsPostingInner](docs/GetAccountHealth200ResponsePermissionsPostingInner.md)
|
|
@@ -385,10 +398,17 @@ Class | Method | HTTP request | Description
|
|
|
385
398
|
- [Late::GetGoogleBusinessAttributes200ResponseAttributesInnerRepeatedEnumValue](docs/GetGoogleBusinessAttributes200ResponseAttributesInnerRepeatedEnumValue.md)
|
|
386
399
|
- [Late::GetGoogleBusinessFoodMenus200Response](docs/GetGoogleBusinessFoodMenus200Response.md)
|
|
387
400
|
- [Late::GetGoogleBusinessLocationDetails200Response](docs/GetGoogleBusinessLocationDetails200Response.md)
|
|
401
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseCategories](docs/GetGoogleBusinessLocationDetails200ResponseCategories.md)
|
|
402
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner](docs/GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner.md)
|
|
403
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory](docs/GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory.md)
|
|
388
404
|
- [Late::GetGoogleBusinessLocationDetails200ResponsePhoneNumbers](docs/GetGoogleBusinessLocationDetails200ResponsePhoneNumbers.md)
|
|
389
405
|
- [Late::GetGoogleBusinessLocationDetails200ResponseProfile](docs/GetGoogleBusinessLocationDetails200ResponseProfile.md)
|
|
390
406
|
- [Late::GetGoogleBusinessLocationDetails200ResponseRegularHours](docs/GetGoogleBusinessLocationDetails200ResponseRegularHours.md)
|
|
391
407
|
- [Late::GetGoogleBusinessLocationDetails200ResponseRegularHoursPeriodsInner](docs/GetGoogleBusinessLocationDetails200ResponseRegularHoursPeriodsInner.md)
|
|
408
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInner](docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInner.md)
|
|
409
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem](docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem.md)
|
|
410
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice](docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice.md)
|
|
411
|
+
- [Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem](docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem.md)
|
|
392
412
|
- [Late::GetGoogleBusinessLocationDetails200ResponseSpecialHours](docs/GetGoogleBusinessLocationDetails200ResponseSpecialHours.md)
|
|
393
413
|
- [Late::GetGoogleBusinessReviews200Response](docs/GetGoogleBusinessReviews200Response.md)
|
|
394
414
|
- [Late::GetGoogleBusinessReviews200ResponseReviewsInner](docs/GetGoogleBusinessReviews200ResponseReviewsInner.md)
|
|
@@ -601,6 +621,7 @@ Class | Method | HTTP request | Description
|
|
|
601
621
|
- [Late::RedditPlatformData](docs/RedditPlatformData.md)
|
|
602
622
|
- [Late::ReleaseWhatsAppPhoneNumber200Response](docs/ReleaseWhatsAppPhoneNumber200Response.md)
|
|
603
623
|
- [Late::ReleaseWhatsAppPhoneNumber200ResponsePhoneNumber](docs/ReleaseWhatsAppPhoneNumber200ResponsePhoneNumber.md)
|
|
624
|
+
- [Late::RemoveBookmark200Response](docs/RemoveBookmark200Response.md)
|
|
604
625
|
- [Late::RemoveWhatsAppBroadcastRecipients200Response](docs/RemoveWhatsAppBroadcastRecipients200Response.md)
|
|
605
626
|
- [Late::RemoveWhatsAppBroadcastRecipientsRequest](docs/RemoveWhatsAppBroadcastRecipientsRequest.md)
|
|
606
627
|
- [Late::RenameWhatsAppGroup200Response](docs/RenameWhatsAppGroup200Response.md)
|
|
@@ -611,6 +632,8 @@ Class | Method | HTTP request | Description
|
|
|
611
632
|
- [Late::ReplyToInboxReview200Response](docs/ReplyToInboxReview200Response.md)
|
|
612
633
|
- [Late::ReplyToInboxReview200ResponseReply](docs/ReplyToInboxReview200ResponseReply.md)
|
|
613
634
|
- [Late::ReplyToInboxReviewRequest](docs/ReplyToInboxReviewRequest.md)
|
|
635
|
+
- [Late::RetweetPost200Response](docs/RetweetPost200Response.md)
|
|
636
|
+
- [Late::RetweetPostRequest](docs/RetweetPostRequest.md)
|
|
614
637
|
- [Late::ScheduleWhatsAppBroadcast200Response](docs/ScheduleWhatsAppBroadcast200Response.md)
|
|
615
638
|
- [Late::ScheduleWhatsAppBroadcast200ResponseBroadcast](docs/ScheduleWhatsAppBroadcast200ResponseBroadcast.md)
|
|
616
639
|
- [Late::ScheduleWhatsAppBroadcastRequest](docs/ScheduleWhatsAppBroadcastRequest.md)
|
|
@@ -671,6 +694,8 @@ Class | Method | HTTP request | Description
|
|
|
671
694
|
- [Late::TranscriptSegment](docs/TranscriptSegment.md)
|
|
672
695
|
- [Late::TwitterPlatformData](docs/TwitterPlatformData.md)
|
|
673
696
|
- [Late::TwitterPlatformDataThreadItemsInner](docs/TwitterPlatformDataThreadItemsInner.md)
|
|
697
|
+
- [Late::UndoRetweet200Response](docs/UndoRetweet200Response.md)
|
|
698
|
+
- [Late::UnfollowUser200Response](docs/UnfollowUser200Response.md)
|
|
674
699
|
- [Late::UnlikeInboxComment200Response](docs/UnlikeInboxComment200Response.md)
|
|
675
700
|
- [Late::UnpublishPost200Response](docs/UnpublishPost200Response.md)
|
|
676
701
|
- [Late::UnpublishPostRequest](docs/UnpublishPostRequest.md)
|
|
@@ -690,9 +715,16 @@ Class | Method | HTTP request | Description
|
|
|
690
715
|
- [Late::UpdateGoogleBusinessFoodMenusRequest](docs/UpdateGoogleBusinessFoodMenusRequest.md)
|
|
691
716
|
- [Late::UpdateGoogleBusinessLocationDetails200Response](docs/UpdateGoogleBusinessLocationDetails200Response.md)
|
|
692
717
|
- [Late::UpdateGoogleBusinessLocationDetailsRequest](docs/UpdateGoogleBusinessLocationDetailsRequest.md)
|
|
718
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestCategories](docs/UpdateGoogleBusinessLocationDetailsRequestCategories.md)
|
|
719
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestCategoriesAdditionalCategoriesInner](docs/UpdateGoogleBusinessLocationDetailsRequestCategoriesAdditionalCategoriesInner.md)
|
|
720
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestCategoriesPrimaryCategory](docs/UpdateGoogleBusinessLocationDetailsRequestCategoriesPrimaryCategory.md)
|
|
693
721
|
- [Late::UpdateGoogleBusinessLocationDetailsRequestProfile](docs/UpdateGoogleBusinessLocationDetailsRequestProfile.md)
|
|
694
722
|
- [Late::UpdateGoogleBusinessLocationDetailsRequestRegularHours](docs/UpdateGoogleBusinessLocationDetailsRequestRegularHours.md)
|
|
695
723
|
- [Late::UpdateGoogleBusinessLocationDetailsRequestRegularHoursPeriodsInner](docs/UpdateGoogleBusinessLocationDetailsRequestRegularHoursPeriodsInner.md)
|
|
724
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestServiceItemsInner](docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInner.md)
|
|
725
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerFreeFormServiceItem](docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerFreeFormServiceItem.md)
|
|
726
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerPrice](docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerPrice.md)
|
|
727
|
+
- [Late::UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerStructuredServiceItem](docs/UpdateGoogleBusinessLocationDetailsRequestServiceItemsInnerStructuredServiceItem.md)
|
|
696
728
|
- [Late::UpdateInboxConversation200Response](docs/UpdateInboxConversation200Response.md)
|
|
697
729
|
- [Late::UpdateInboxConversation200ResponseData](docs/UpdateInboxConversation200ResponseData.md)
|
|
698
730
|
- [Late::UpdateInboxConversationRequest](docs/UpdateInboxConversationRequest.md)
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
| **is_external** | **Boolean** | | [optional] |
|
|
17
17
|
| **thumbnail_url** | **String** | | [optional] |
|
|
18
18
|
| **media_type** | **String** | | [optional] |
|
|
19
|
-
| **media_items** | [**Array<
|
|
19
|
+
| **media_items** | [**Array<AnalyticsSinglePostResponseMediaItemsInner>**](AnalyticsSinglePostResponseMediaItemsInner.md) | All media items for this post. Carousel posts contain one entry per slide. | [optional] |
|
|
20
20
|
|
|
21
21
|
## Example
|
|
22
22
|
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
| **platform** | **String** | | [optional] |
|
|
15
15
|
| **platform_post_url** | **String** | | [optional] |
|
|
16
16
|
| **is_external** | **Boolean** | | [optional] |
|
|
17
|
+
| **thumbnail_url** | **String** | | [optional] |
|
|
18
|
+
| **media_type** | **String** | | [optional] |
|
|
19
|
+
| **media_items** | [**Array<AnalyticsSinglePostResponseMediaItemsInner>**](AnalyticsSinglePostResponseMediaItemsInner.md) | All media items for this post. Carousel posts contain one entry per slide. | [optional] |
|
|
17
20
|
|
|
18
21
|
## Example
|
|
19
22
|
|
|
@@ -30,7 +33,10 @@ instance = Late::AnalyticsSinglePostResponse.new(
|
|
|
30
33
|
platform_analytics: null,
|
|
31
34
|
platform: null,
|
|
32
35
|
platform_post_url: null,
|
|
33
|
-
is_external: null
|
|
36
|
+
is_external: null,
|
|
37
|
+
thumbnail_url: null,
|
|
38
|
+
media_type: null,
|
|
39
|
+
media_items: null
|
|
34
40
|
)
|
|
35
41
|
```
|
|
36
42
|
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Late::AnalyticsSinglePostResponseMediaItemsInner
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **type** | **String** | | [optional] |
|
|
8
|
+
| **url** | **String** | Direct URL to the media | [optional] |
|
|
9
|
+
| **thumbnail** | **String** | Thumbnail URL (same as url for images) | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'late-sdk'
|
|
15
|
+
|
|
16
|
+
instance = Late::AnalyticsSinglePostResponseMediaItemsInner.new(
|
|
17
|
+
type: null,
|
|
18
|
+
url: null,
|
|
19
|
+
thumbnail: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Late::BookmarkPost200Response
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | **String** | | [optional] |
|
|
8
|
+
| **tweet_id** | **String** | | [optional] |
|
|
9
|
+
| **bookmarked** | **Boolean** | | [optional] |
|
|
10
|
+
| **platform** | **String** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'late-sdk'
|
|
16
|
+
|
|
17
|
+
instance = Late::BookmarkPost200Response.new(
|
|
18
|
+
status: success,
|
|
19
|
+
tweet_id: null,
|
|
20
|
+
bookmarked: null,
|
|
21
|
+
platform: twitter
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::BookmarkPostRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **account_id** | **String** | The social account ID | |
|
|
8
|
+
| **tweet_id** | **String** | The ID of the tweet to bookmark | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::BookmarkPostRequest.new(
|
|
16
|
+
account_id: null,
|
|
17
|
+
tweet_id: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
data/docs/CommentsApi.md
CHANGED
|
@@ -175,7 +175,7 @@ end
|
|
|
175
175
|
|
|
176
176
|
Hide comment
|
|
177
177
|
|
|
178
|
-
Hide a comment on a post. Supported by Facebook, Instagram, and
|
|
178
|
+
Hide a comment on a post. Supported by Facebook, Instagram, Threads, and X/Twitter. Hidden comments are only visible to the commenter and page admin. For X/Twitter, the reply must belong to a conversation started by the authenticated user. Requires the tweet.moderate.write scope and X API Basic tier or higher.
|
|
179
179
|
|
|
180
180
|
### Examples
|
|
181
181
|
|
|
@@ -552,7 +552,7 @@ end
|
|
|
552
552
|
|
|
553
553
|
Unhide comment
|
|
554
554
|
|
|
555
|
-
Unhide a previously hidden comment. Supported by Facebook, Instagram, and
|
|
555
|
+
Unhide a previously hidden comment. Supported by Facebook, Instagram, Threads, and X/Twitter.
|
|
556
556
|
|
|
557
557
|
### Examples
|
|
558
558
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Late::FollowUser200Response
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | **String** | | [optional] |
|
|
8
|
+
| **target_user_id** | **String** | | [optional] |
|
|
9
|
+
| **following** | **Boolean** | | [optional] |
|
|
10
|
+
| **pending_follow** | **Boolean** | True if the target account is protected and a follow request was sent | [optional] |
|
|
11
|
+
| **platform** | **String** | | [optional] |
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```ruby
|
|
16
|
+
require 'late-sdk'
|
|
17
|
+
|
|
18
|
+
instance = Late::FollowUser200Response.new(
|
|
19
|
+
status: success,
|
|
20
|
+
target_user_id: null,
|
|
21
|
+
following: null,
|
|
22
|
+
pending_follow: null,
|
|
23
|
+
platform: twitter
|
|
24
|
+
)
|
|
25
|
+
```
|
|
26
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::FollowUserRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **account_id** | **String** | The social account ID | |
|
|
8
|
+
| **target_user_id** | **String** | The Twitter ID of the user to follow | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::FollowUserRequest.new(
|
|
16
|
+
account_id: null,
|
|
17
|
+
target_user_id: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -14,7 +14,7 @@ All URIs are relative to *https://getlate.dev/api*
|
|
|
14
14
|
|
|
15
15
|
Get location details
|
|
16
16
|
|
|
17
|
-
Returns detailed GBP location info (hours, description, phone, website, categories). Use readMask to request specific fields.
|
|
17
|
+
Returns detailed GBP location info (hours, description, phone, website, categories, services). Use readMask to request specific fields.
|
|
18
18
|
|
|
19
19
|
### Examples
|
|
20
20
|
|
|
@@ -31,7 +31,7 @@ api_instance = Late::GMBLocationDetailsApi.new
|
|
|
31
31
|
account_id = 'account_id_example' # String | The Late account ID (from /v1/accounts)
|
|
32
32
|
opts = {
|
|
33
33
|
location_id: 'location_id_example', # String | Override which location to query. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs.
|
|
34
|
-
read_mask: 'read_mask_example' # String | Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, profile, openInfo, metadata, moreHours.
|
|
34
|
+
read_mask: 'read_mask_example' # String | Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, serviceItems, profile, openInfo, metadata, moreHours.
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
begin
|
|
@@ -67,7 +67,7 @@ end
|
|
|
67
67
|
| ---- | ---- | ----------- | ----- |
|
|
68
68
|
| **account_id** | **String** | The Late account ID (from /v1/accounts) | |
|
|
69
69
|
| **location_id** | **String** | Override which location to query. If omitted, uses the account's selected location. Use GET /gmb-locations to list valid IDs. | [optional] |
|
|
70
|
-
| **read_mask** | **String** | Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, profile, openInfo, metadata, moreHours. | [optional] |
|
|
70
|
+
| **read_mask** | **String** | Comma-separated fields to return. Available: name, title, phoneNumbers, categories, storefrontAddress, websiteUri, regularHours, specialHours, serviceArea, serviceItems, profile, openInfo, metadata, moreHours. | [optional] |
|
|
71
71
|
|
|
72
72
|
### Return type
|
|
73
73
|
|
|
@@ -89,7 +89,7 @@ end
|
|
|
89
89
|
|
|
90
90
|
Update location details
|
|
91
91
|
|
|
92
|
-
Updates GBP location details
|
|
92
|
+
Updates GBP location details. The updateMask field is required and specifies which fields to update. This endpoint proxies Google's Business Information API locations.patch, so any valid updateMask field is supported. Common fields: regularHours, specialHours, profile.description, websiteUri, phoneNumbers, categories, serviceItems.
|
|
93
93
|
|
|
94
94
|
### Examples
|
|
95
95
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GbpFreeFormServiceItemLabel
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **display_name** | **String** | | [optional] |
|
|
8
|
+
| **language_code** | **String** | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GbpFreeFormServiceItemLabel.new(
|
|
16
|
+
display_name: null,
|
|
17
|
+
language_code: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GbpUpdateFreeFormServiceItemLabel
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **display_name** | **String** | Service name as displayed to users | [optional] |
|
|
8
|
+
| **language_code** | **String** | Language code (e.g. 'en') | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GbpUpdateFreeFormServiceItemLabel.new(
|
|
16
|
+
display_name: null,
|
|
17
|
+
language_code: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
| **profile** | [**GetGoogleBusinessLocationDetails200ResponseProfile**](GetGoogleBusinessLocationDetails200ResponseProfile.md) | | [optional] |
|
|
14
14
|
| **website_uri** | **String** | | [optional] |
|
|
15
15
|
| **phone_numbers** | [**GetGoogleBusinessLocationDetails200ResponsePhoneNumbers**](GetGoogleBusinessLocationDetails200ResponsePhoneNumbers.md) | | [optional] |
|
|
16
|
+
| **categories** | [**GetGoogleBusinessLocationDetails200ResponseCategories**](GetGoogleBusinessLocationDetails200ResponseCategories.md) | | [optional] |
|
|
17
|
+
| **service_items** | [**Array<GetGoogleBusinessLocationDetails200ResponseServiceItemsInner>**](GetGoogleBusinessLocationDetails200ResponseServiceItemsInner.md) | Services offered (returned when readMask includes 'serviceItems') | [optional] |
|
|
16
18
|
|
|
17
19
|
## Example
|
|
18
20
|
|
|
@@ -28,7 +30,9 @@ instance = Late::GetGoogleBusinessLocationDetails200Response.new(
|
|
|
28
30
|
special_hours: null,
|
|
29
31
|
profile: null,
|
|
30
32
|
website_uri: null,
|
|
31
|
-
phone_numbers: null
|
|
33
|
+
phone_numbers: null,
|
|
34
|
+
categories: null,
|
|
35
|
+
service_items: null
|
|
32
36
|
)
|
|
33
37
|
```
|
|
34
38
|
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseCategories
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **primary_category** | [**GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory**](GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory.md) | | [optional] |
|
|
8
|
+
| **additional_categories** | [**Array<GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner>**](GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner.md) | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseCategories.new(
|
|
16
|
+
primary_category: null,
|
|
17
|
+
additional_categories: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **name** | **String** | | [optional] |
|
|
8
|
+
| **display_name** | **String** | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseCategoriesAdditionalCategoriesInner.new(
|
|
16
|
+
name: null,
|
|
17
|
+
display_name: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **name** | **String** | Category resource name | [optional] |
|
|
8
|
+
| **display_name** | **String** | Human-readable category name | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseCategoriesPrimaryCategory.new(
|
|
16
|
+
name: null,
|
|
17
|
+
display_name: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInner
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **structured_service_item** | [**GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem**](GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem.md) | | [optional] |
|
|
8
|
+
| **free_form_service_item** | [**GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem**](GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem.md) | | [optional] |
|
|
9
|
+
| **price** | [**GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice**](GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice.md) | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'late-sdk'
|
|
15
|
+
|
|
16
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInner.new(
|
|
17
|
+
structured_service_item: null,
|
|
18
|
+
free_form_service_item: null,
|
|
19
|
+
price: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **category** | **String** | | [optional] |
|
|
8
|
+
| **label** | [**GbpFreeFormServiceItemLabel**](GbpFreeFormServiceItemLabel.md) | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerFreeFormServiceItem.new(
|
|
16
|
+
category: null,
|
|
17
|
+
label: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **currency_code** | **String** | | [optional] |
|
|
8
|
+
| **units** | **String** | | [optional] |
|
|
9
|
+
| **nanos** | **Integer** | | [optional] |
|
|
10
|
+
|
|
11
|
+
## Example
|
|
12
|
+
|
|
13
|
+
```ruby
|
|
14
|
+
require 'late-sdk'
|
|
15
|
+
|
|
16
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerPrice.new(
|
|
17
|
+
currency_code: null,
|
|
18
|
+
units: null,
|
|
19
|
+
nanos: null
|
|
20
|
+
)
|
|
21
|
+
```
|
|
22
|
+
|
data/docs/GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **service_type_id** | **String** | | [optional] |
|
|
8
|
+
| **description** | **String** | | [optional] |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::GetGoogleBusinessLocationDetails200ResponseServiceItemsInnerStructuredServiceItem.new(
|
|
16
|
+
service_type_id: null,
|
|
17
|
+
description: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Late::RemoveBookmark200Response
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | **String** | | [optional] |
|
|
8
|
+
| **tweet_id** | **String** | | [optional] |
|
|
9
|
+
| **bookmarked** | **Boolean** | | [optional] |
|
|
10
|
+
| **platform** | **String** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'late-sdk'
|
|
16
|
+
|
|
17
|
+
instance = Late::RemoveBookmark200Response.new(
|
|
18
|
+
status: success,
|
|
19
|
+
tweet_id: null,
|
|
20
|
+
bookmarked: false,
|
|
21
|
+
platform: twitter
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Late::RetweetPost200Response
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **status** | **String** | | [optional] |
|
|
8
|
+
| **tweet_id** | **String** | | [optional] |
|
|
9
|
+
| **retweeted** | **Boolean** | | [optional] |
|
|
10
|
+
| **platform** | **String** | | [optional] |
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```ruby
|
|
15
|
+
require 'late-sdk'
|
|
16
|
+
|
|
17
|
+
instance = Late::RetweetPost200Response.new(
|
|
18
|
+
status: success,
|
|
19
|
+
tweet_id: null,
|
|
20
|
+
retweeted: null,
|
|
21
|
+
platform: twitter
|
|
22
|
+
)
|
|
23
|
+
```
|
|
24
|
+
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Late::RetweetPostRequest
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **account_id** | **String** | The social account ID | |
|
|
8
|
+
| **tweet_id** | **String** | The ID of the tweet to retweet | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```ruby
|
|
13
|
+
require 'late-sdk'
|
|
14
|
+
|
|
15
|
+
instance = Late::RetweetPostRequest.new(
|
|
16
|
+
account_id: null,
|
|
17
|
+
tweet_id: null
|
|
18
|
+
)
|
|
19
|
+
```
|
|
20
|
+
|