late-sdk 0.0.110 → 0.0.112

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 (77) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -0
  3. data/docs/AnalyticsApi.md +154 -0
  4. data/docs/CreateInboxConversation201Response.md +20 -0
  5. data/docs/CreateInboxConversation201ResponseData.md +26 -0
  6. data/docs/CreateInboxConversation400Response.md +20 -0
  7. data/docs/CreateInboxConversation422Response.md +20 -0
  8. data/docs/CreateInboxConversationRequest.md +26 -0
  9. data/docs/CreatePostRequest.md +2 -0
  10. data/docs/EditPost200Response.md +24 -0
  11. data/docs/EditPostRequest.md +20 -0
  12. data/docs/FacebookPlatformData.md +3 -1
  13. data/docs/GetGoogleBusinessPerformance200Response.md +28 -0
  14. data/docs/GetGoogleBusinessPerformance200ResponseDateRange.md +20 -0
  15. data/docs/GetGoogleBusinessPerformance200ResponseMetricsValue.md +20 -0
  16. data/docs/GetGoogleBusinessPerformance200ResponseMetricsValueValuesInner.md +20 -0
  17. data/docs/GetGoogleBusinessPerformance400Response.md +20 -0
  18. data/docs/GetGoogleBusinessSearchKeywords200Response.md +28 -0
  19. data/docs/GetGoogleBusinessSearchKeywords200ResponseKeywordsInner.md +20 -0
  20. data/docs/GetGoogleBusinessSearchKeywords200ResponseMonthRange.md +20 -0
  21. data/docs/GetGoogleBusinessSearchKeywords400Response.md +18 -0
  22. data/docs/MessagesApi.md +70 -0
  23. data/docs/PostsApi.md +72 -0
  24. data/docs/TwitterPlatformData.md +3 -1
  25. data/docs/UpdatePostRequest.md +2 -0
  26. data/lib/late-sdk/api/analytics_api.rb +153 -0
  27. data/lib/late-sdk/api/messages_api.rb +68 -0
  28. data/lib/late-sdk/api/posts_api.rb +74 -0
  29. data/lib/late-sdk/models/create_inbox_conversation201_response.rb +156 -0
  30. data/lib/late-sdk/models/create_inbox_conversation201_response_data.rb +188 -0
  31. data/lib/late-sdk/models/create_inbox_conversation400_response.rb +190 -0
  32. data/lib/late-sdk/models/create_inbox_conversation422_response.rb +190 -0
  33. data/lib/late-sdk/models/create_inbox_conversation_request.rb +207 -0
  34. data/lib/late-sdk/models/create_post_request.rb +11 -1
  35. data/lib/late-sdk/models/edit_post200_response.rb +176 -0
  36. data/lib/late-sdk/models/edit_post_request.rb +216 -0
  37. data/lib/late-sdk/models/facebook_platform_data.rb +14 -2
  38. data/lib/late-sdk/models/get_google_business_performance200_response.rb +195 -0
  39. data/lib/late-sdk/models/get_google_business_performance200_response_date_range.rb +156 -0
  40. data/lib/late-sdk/models/get_google_business_performance200_response_metrics_value.rb +159 -0
  41. data/lib/late-sdk/models/get_google_business_performance200_response_metrics_value_values_inner.rb +156 -0
  42. data/lib/late-sdk/models/get_google_business_performance400_response.rb +158 -0
  43. data/lib/late-sdk/models/get_google_business_search_keywords200_response.rb +194 -0
  44. data/lib/late-sdk/models/get_google_business_search_keywords200_response_keywords_inner.rb +156 -0
  45. data/lib/late-sdk/models/get_google_business_search_keywords200_response_month_range.rb +156 -0
  46. data/lib/late-sdk/models/get_google_business_search_keywords400_response.rb +147 -0
  47. data/lib/late-sdk/models/twitter_platform_data.rb +16 -4
  48. data/lib/late-sdk/models/update_post_request.rb +11 -1
  49. data/lib/late-sdk/version.rb +1 -1
  50. data/lib/late-sdk.rb +16 -0
  51. data/openapi.yaml +423 -1
  52. data/spec/api/analytics_api_spec.rb +29 -0
  53. data/spec/api/messages_api_spec.rb +12 -0
  54. data/spec/api/posts_api_spec.rb +13 -0
  55. data/spec/models/create_inbox_conversation201_response_data_spec.rb +60 -0
  56. data/spec/models/create_inbox_conversation201_response_spec.rb +42 -0
  57. data/spec/models/create_inbox_conversation400_response_spec.rb +46 -0
  58. data/spec/models/create_inbox_conversation422_response_spec.rb +46 -0
  59. data/spec/models/create_inbox_conversation_request_spec.rb +60 -0
  60. data/spec/models/create_post_request_spec.rb +6 -0
  61. data/spec/models/edit_post200_response_spec.rb +54 -0
  62. data/spec/models/edit_post_request_spec.rb +46 -0
  63. data/spec/models/facebook_platform_data_spec.rb +6 -0
  64. data/spec/models/get_google_business_performance200_response_date_range_spec.rb +42 -0
  65. data/spec/models/get_google_business_performance200_response_metrics_value_spec.rb +42 -0
  66. data/spec/models/get_google_business_performance200_response_metrics_value_values_inner_spec.rb +42 -0
  67. data/spec/models/get_google_business_performance200_response_spec.rb +66 -0
  68. data/spec/models/get_google_business_performance400_response_spec.rb +42 -0
  69. data/spec/models/get_google_business_search_keywords200_response_keywords_inner_spec.rb +42 -0
  70. data/spec/models/get_google_business_search_keywords200_response_month_range_spec.rb +42 -0
  71. data/spec/models/get_google_business_search_keywords200_response_spec.rb +66 -0
  72. data/spec/models/get_google_business_search_keywords400_response_spec.rb +36 -0
  73. data/spec/models/twitter_platform_data_spec.rb +6 -0
  74. data/spec/models/update_post_request_spec.rb +6 -0
  75. data/zernio-sdk-0.0.112.gem +0 -0
  76. metadata +67 -3
  77. data/zernio-sdk-0.0.110.gem +0 -0
@@ -0,0 +1,156 @@
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 'date'
14
+ require 'time'
15
+
16
+ module Late
17
+ class GetGoogleBusinessSearchKeywords200ResponseKeywordsInner < ApiModelBase
18
+ attr_accessor :keyword
19
+
20
+ attr_accessor :impressions
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'keyword' => :'keyword',
26
+ :'impressions' => :'impressions'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'keyword' => :'String',
44
+ :'impressions' => :'Integer'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ ])
52
+ end
53
+
54
+ # Initializes the object
55
+ # @param [Hash] attributes Model attributes in the form of hash
56
+ def initialize(attributes = {})
57
+ if (!attributes.is_a?(Hash))
58
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::GetGoogleBusinessSearchKeywords200ResponseKeywordsInner` initialize method"
59
+ end
60
+
61
+ # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::GetGoogleBusinessSearchKeywords200ResponseKeywordsInner`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'keyword')
71
+ self.keyword = attributes[:'keyword']
72
+ end
73
+
74
+ if attributes.key?(:'impressions')
75
+ self.impressions = attributes[:'impressions']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
83
+ invalid_properties = Array.new
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ warn '[DEPRECATED] the `valid?` method is obsolete'
91
+ true
92
+ end
93
+
94
+ # Checks equality by comparing each attribute.
95
+ # @param [Object] Object to be compared
96
+ def ==(o)
97
+ return true if self.equal?(o)
98
+ self.class == o.class &&
99
+ keyword == o.keyword &&
100
+ impressions == o.impressions
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Integer] Hash code
111
+ def hash
112
+ [keyword, impressions].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def self.build_from_hash(attributes)
119
+ return nil unless attributes.is_a?(Hash)
120
+ attributes = attributes.transform_keys(&:to_sym)
121
+ transformed_hash = {}
122
+ openapi_types.each_pair do |key, type|
123
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
124
+ transformed_hash["#{key}"] = nil
125
+ elsif type =~ /\AArray<(.*)>/i
126
+ # check to ensure the input is an array given that the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[attribute_map[key]].is_a?(Array)
129
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
130
+ end
131
+ elsif !attributes[attribute_map[key]].nil?
132
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
133
+ end
134
+ end
135
+ new(transformed_hash)
136
+ end
137
+
138
+ # Returns the object in the form of hash
139
+ # @return [Hash] Returns the object in the form of hash
140
+ def to_hash
141
+ hash = {}
142
+ self.class.attribute_map.each_pair do |attr, param|
143
+ value = self.send(attr)
144
+ if value.nil?
145
+ is_nullable = self.class.openapi_nullable.include?(attr)
146
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
147
+ end
148
+
149
+ hash[param] = _to_hash(value)
150
+ end
151
+ hash
152
+ end
153
+
154
+ end
155
+
156
+ end
@@ -0,0 +1,156 @@
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 'date'
14
+ require 'time'
15
+
16
+ module Late
17
+ class GetGoogleBusinessSearchKeywords200ResponseMonthRange < ApiModelBase
18
+ attr_accessor :start_month
19
+
20
+ attr_accessor :end_month
21
+
22
+ # Attribute mapping from ruby-style variable name to JSON key.
23
+ def self.attribute_map
24
+ {
25
+ :'start_month' => :'startMonth',
26
+ :'end_month' => :'endMonth'
27
+ }
28
+ end
29
+
30
+ # Returns attribute mapping this model knows about
31
+ def self.acceptable_attribute_map
32
+ attribute_map
33
+ end
34
+
35
+ # Returns all the JSON keys this model knows about
36
+ def self.acceptable_attributes
37
+ acceptable_attribute_map.values
38
+ end
39
+
40
+ # Attribute type mapping.
41
+ def self.openapi_types
42
+ {
43
+ :'start_month' => :'String',
44
+ :'end_month' => :'String'
45
+ }
46
+ end
47
+
48
+ # List of attributes with nullable: true
49
+ def self.openapi_nullable
50
+ Set.new([
51
+ ])
52
+ end
53
+
54
+ # Initializes the object
55
+ # @param [Hash] attributes Model attributes in the form of hash
56
+ def initialize(attributes = {})
57
+ if (!attributes.is_a?(Hash))
58
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::GetGoogleBusinessSearchKeywords200ResponseMonthRange` initialize method"
59
+ end
60
+
61
+ # check to see if the attribute exists and convert string to symbol for hash key
62
+ acceptable_attribute_map = self.class.acceptable_attribute_map
63
+ attributes = attributes.each_with_object({}) { |(k, v), h|
64
+ if (!acceptable_attribute_map.key?(k.to_sym))
65
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::GetGoogleBusinessSearchKeywords200ResponseMonthRange`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
66
+ end
67
+ h[k.to_sym] = v
68
+ }
69
+
70
+ if attributes.key?(:'start_month')
71
+ self.start_month = attributes[:'start_month']
72
+ end
73
+
74
+ if attributes.key?(:'end_month')
75
+ self.end_month = attributes[:'end_month']
76
+ end
77
+ end
78
+
79
+ # Show invalid properties with the reasons. Usually used together with valid?
80
+ # @return Array for valid properties with the reasons
81
+ def list_invalid_properties
82
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
83
+ invalid_properties = Array.new
84
+ invalid_properties
85
+ end
86
+
87
+ # Check to see if the all the properties in the model are valid
88
+ # @return true if the model is valid
89
+ def valid?
90
+ warn '[DEPRECATED] the `valid?` method is obsolete'
91
+ true
92
+ end
93
+
94
+ # Checks equality by comparing each attribute.
95
+ # @param [Object] Object to be compared
96
+ def ==(o)
97
+ return true if self.equal?(o)
98
+ self.class == o.class &&
99
+ start_month == o.start_month &&
100
+ end_month == o.end_month
101
+ end
102
+
103
+ # @see the `==` method
104
+ # @param [Object] Object to be compared
105
+ def eql?(o)
106
+ self == o
107
+ end
108
+
109
+ # Calculates hash code according to all attributes.
110
+ # @return [Integer] Hash code
111
+ def hash
112
+ [start_month, end_month].hash
113
+ end
114
+
115
+ # Builds the object from hash
116
+ # @param [Hash] attributes Model attributes in the form of hash
117
+ # @return [Object] Returns the model itself
118
+ def self.build_from_hash(attributes)
119
+ return nil unless attributes.is_a?(Hash)
120
+ attributes = attributes.transform_keys(&:to_sym)
121
+ transformed_hash = {}
122
+ openapi_types.each_pair do |key, type|
123
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
124
+ transformed_hash["#{key}"] = nil
125
+ elsif type =~ /\AArray<(.*)>/i
126
+ # check to ensure the input is an array given that the attribute
127
+ # is documented as an array but the input is not
128
+ if attributes[attribute_map[key]].is_a?(Array)
129
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
130
+ end
131
+ elsif !attributes[attribute_map[key]].nil?
132
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
133
+ end
134
+ end
135
+ new(transformed_hash)
136
+ end
137
+
138
+ # Returns the object in the form of hash
139
+ # @return [Hash] Returns the object in the form of hash
140
+ def to_hash
141
+ hash = {}
142
+ self.class.attribute_map.each_pair do |attr, param|
143
+ value = self.send(attr)
144
+ if value.nil?
145
+ is_nullable = self.class.openapi_nullable.include?(attr)
146
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
147
+ end
148
+
149
+ hash[param] = _to_hash(value)
150
+ end
151
+ hash
152
+ end
153
+
154
+ end
155
+
156
+ end
@@ -0,0 +1,147 @@
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 'date'
14
+ require 'time'
15
+
16
+ module Late
17
+ class GetGoogleBusinessSearchKeywords400Response < ApiModelBase
18
+ attr_accessor :error
19
+
20
+ # Attribute mapping from ruby-style variable name to JSON key.
21
+ def self.attribute_map
22
+ {
23
+ :'error' => :'error'
24
+ }
25
+ end
26
+
27
+ # Returns attribute mapping this model knows about
28
+ def self.acceptable_attribute_map
29
+ attribute_map
30
+ end
31
+
32
+ # Returns all the JSON keys this model knows about
33
+ def self.acceptable_attributes
34
+ acceptable_attribute_map.values
35
+ end
36
+
37
+ # Attribute type mapping.
38
+ def self.openapi_types
39
+ {
40
+ :'error' => :'String'
41
+ }
42
+ end
43
+
44
+ # List of attributes with nullable: true
45
+ def self.openapi_nullable
46
+ Set.new([
47
+ ])
48
+ end
49
+
50
+ # Initializes the object
51
+ # @param [Hash] attributes Model attributes in the form of hash
52
+ def initialize(attributes = {})
53
+ if (!attributes.is_a?(Hash))
54
+ fail ArgumentError, "The input argument (attributes) must be a hash in `Late::GetGoogleBusinessSearchKeywords400Response` initialize method"
55
+ end
56
+
57
+ # check to see if the attribute exists and convert string to symbol for hash key
58
+ acceptable_attribute_map = self.class.acceptable_attribute_map
59
+ attributes = attributes.each_with_object({}) { |(k, v), h|
60
+ if (!acceptable_attribute_map.key?(k.to_sym))
61
+ fail ArgumentError, "`#{k}` is not a valid attribute in `Late::GetGoogleBusinessSearchKeywords400Response`. Please check the name to make sure it's valid. List of attributes: " + acceptable_attribute_map.keys.inspect
62
+ end
63
+ h[k.to_sym] = v
64
+ }
65
+
66
+ if attributes.key?(:'error')
67
+ self.error = attributes[:'error']
68
+ end
69
+ end
70
+
71
+ # Show invalid properties with the reasons. Usually used together with valid?
72
+ # @return Array for valid properties with the reasons
73
+ def list_invalid_properties
74
+ warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
75
+ invalid_properties = Array.new
76
+ invalid_properties
77
+ end
78
+
79
+ # Check to see if the all the properties in the model are valid
80
+ # @return true if the model is valid
81
+ def valid?
82
+ warn '[DEPRECATED] the `valid?` method is obsolete'
83
+ true
84
+ end
85
+
86
+ # Checks equality by comparing each attribute.
87
+ # @param [Object] Object to be compared
88
+ def ==(o)
89
+ return true if self.equal?(o)
90
+ self.class == o.class &&
91
+ error == o.error
92
+ end
93
+
94
+ # @see the `==` method
95
+ # @param [Object] Object to be compared
96
+ def eql?(o)
97
+ self == o
98
+ end
99
+
100
+ # Calculates hash code according to all attributes.
101
+ # @return [Integer] Hash code
102
+ def hash
103
+ [error].hash
104
+ end
105
+
106
+ # Builds the object from hash
107
+ # @param [Hash] attributes Model attributes in the form of hash
108
+ # @return [Object] Returns the model itself
109
+ def self.build_from_hash(attributes)
110
+ return nil unless attributes.is_a?(Hash)
111
+ attributes = attributes.transform_keys(&:to_sym)
112
+ transformed_hash = {}
113
+ openapi_types.each_pair do |key, type|
114
+ if attributes.key?(attribute_map[key]) && attributes[attribute_map[key]].nil?
115
+ transformed_hash["#{key}"] = nil
116
+ elsif type =~ /\AArray<(.*)>/i
117
+ # check to ensure the input is an array given that the attribute
118
+ # is documented as an array but the input is not
119
+ if attributes[attribute_map[key]].is_a?(Array)
120
+ transformed_hash["#{key}"] = attributes[attribute_map[key]].map { |v| _deserialize($1, v) }
121
+ end
122
+ elsif !attributes[attribute_map[key]].nil?
123
+ transformed_hash["#{key}"] = _deserialize(type, attributes[attribute_map[key]])
124
+ end
125
+ end
126
+ new(transformed_hash)
127
+ end
128
+
129
+ # Returns the object in the form of hash
130
+ # @return [Hash] Returns the object in the form of hash
131
+ def to_hash
132
+ hash = {}
133
+ self.class.attribute_map.each_pair do |attr, param|
134
+ value = self.send(attr)
135
+ if value.nil?
136
+ is_nullable = self.class.openapi_nullable.include?(attr)
137
+ next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
138
+ end
139
+
140
+ hash[param] = _to_hash(value)
141
+ end
142
+ hash
143
+ end
144
+
145
+ end
146
+
147
+ end
@@ -26,6 +26,9 @@ module Late
26
26
 
27
27
  attr_accessor :poll
28
28
 
29
+ # Enable long video uploads (over 140 seconds) using amplify_video media category. Requires the connected X account to have an active X Premium subscription. When true, videos are uploaded with the amplify_video category which supports longer durations (up to 10 minutes via API). When false or omitted, the standard tweet_video category is used (140 second limit). Note that not all Premium accounts have API long-video access, as X may require separate allowlisting.
30
+ attr_accessor :long_video
31
+
29
32
  class EnumAttributeValidator
30
33
  attr_reader :datatype
31
34
  attr_reader :allowable_values
@@ -54,7 +57,8 @@ module Late
54
57
  :'reply_to_tweet_id' => :'replyToTweetId',
55
58
  :'reply_settings' => :'replySettings',
56
59
  :'thread_items' => :'threadItems',
57
- :'poll' => :'poll'
60
+ :'poll' => :'poll',
61
+ :'long_video' => :'longVideo'
58
62
  }
59
63
  end
60
64
 
@@ -74,7 +78,8 @@ module Late
74
78
  :'reply_to_tweet_id' => :'String',
75
79
  :'reply_settings' => :'String',
76
80
  :'thread_items' => :'Array<TwitterPlatformDataThreadItemsInner>',
77
- :'poll' => :'TwitterPlatformDataPoll'
81
+ :'poll' => :'TwitterPlatformDataPoll',
82
+ :'long_video' => :'Boolean'
78
83
  }
79
84
  end
80
85
 
@@ -117,6 +122,12 @@ module Late
117
122
  if attributes.key?(:'poll')
118
123
  self.poll = attributes[:'poll']
119
124
  end
125
+
126
+ if attributes.key?(:'long_video')
127
+ self.long_video = attributes[:'long_video']
128
+ else
129
+ self.long_video = false
130
+ end
120
131
  end
121
132
 
122
133
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -154,7 +165,8 @@ module Late
154
165
  reply_to_tweet_id == o.reply_to_tweet_id &&
155
166
  reply_settings == o.reply_settings &&
156
167
  thread_items == o.thread_items &&
157
- poll == o.poll
168
+ poll == o.poll &&
169
+ long_video == o.long_video
158
170
  end
159
171
 
160
172
  # @see the `==` method
@@ -166,7 +178,7 @@ module Late
166
178
  # Calculates hash code according to all attributes.
167
179
  # @return [Integer] Hash code
168
180
  def hash
169
- [reply_to_tweet_id, reply_settings, thread_items, poll].hash
181
+ [reply_to_tweet_id, reply_settings, thread_items, poll, long_video].hash
170
182
  end
171
183
 
172
184
  # Builds the object from hash
@@ -22,6 +22,9 @@ module Late
22
22
  # Root-level TikTok settings applied to all TikTok platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
23
23
  attr_accessor :tiktok_settings
24
24
 
25
+ # Root-level Facebook settings applied to all Facebook platforms. Merged into each platform's platformSpecificData, with platform-specific settings taking precedence.
26
+ attr_accessor :facebook_settings
27
+
25
28
  attr_accessor :recycling
26
29
 
27
30
  # Attribute mapping from ruby-style variable name to JSON key.
@@ -30,6 +33,7 @@ module Late
30
33
  :'content' => :'content',
31
34
  :'scheduled_for' => :'scheduledFor',
32
35
  :'tiktok_settings' => :'tiktokSettings',
36
+ :'facebook_settings' => :'facebookSettings',
33
37
  :'recycling' => :'recycling'
34
38
  }
35
39
  end
@@ -50,6 +54,7 @@ module Late
50
54
  :'content' => :'String',
51
55
  :'scheduled_for' => :'Time',
52
56
  :'tiktok_settings' => :'TikTokPlatformData',
57
+ :'facebook_settings' => :'FacebookPlatformData',
53
58
  :'recycling' => :'RecyclingConfig'
54
59
  }
55
60
  end
@@ -88,6 +93,10 @@ module Late
88
93
  self.tiktok_settings = attributes[:'tiktok_settings']
89
94
  end
90
95
 
96
+ if attributes.key?(:'facebook_settings')
97
+ self.facebook_settings = attributes[:'facebook_settings']
98
+ end
99
+
91
100
  if attributes.key?(:'recycling')
92
101
  self.recycling = attributes[:'recycling']
93
102
  end
@@ -116,6 +125,7 @@ module Late
116
125
  content == o.content &&
117
126
  scheduled_for == o.scheduled_for &&
118
127
  tiktok_settings == o.tiktok_settings &&
128
+ facebook_settings == o.facebook_settings &&
119
129
  recycling == o.recycling
120
130
  end
121
131
 
@@ -128,7 +138,7 @@ module Late
128
138
  # Calculates hash code according to all attributes.
129
139
  # @return [Integer] Hash code
130
140
  def hash
131
- [content, scheduled_for, tiktok_settings, recycling].hash
141
+ [content, scheduled_for, tiktok_settings, facebook_settings, recycling].hash
132
142
  end
133
143
 
134
144
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.19.0
11
11
  =end
12
12
 
13
13
  module Late
14
- VERSION = '0.0.110'
14
+ VERSION = '0.0.112'
15
15
  end
data/lib/late-sdk.rb CHANGED
@@ -111,6 +111,11 @@ require 'late-sdk/models/create_google_business_media200_response'
111
111
  require 'late-sdk/models/create_google_business_media_request'
112
112
  require 'late-sdk/models/create_google_business_place_action200_response'
113
113
  require 'late-sdk/models/create_google_business_place_action_request'
114
+ require 'late-sdk/models/create_inbox_conversation201_response'
115
+ require 'late-sdk/models/create_inbox_conversation201_response_data'
116
+ require 'late-sdk/models/create_inbox_conversation400_response'
117
+ require 'late-sdk/models/create_inbox_conversation422_response'
118
+ require 'late-sdk/models/create_inbox_conversation_request'
114
119
  require 'late-sdk/models/create_invite_token201_response'
115
120
  require 'late-sdk/models/create_invite_token_request'
116
121
  require 'late-sdk/models/create_post409_response'
@@ -163,6 +168,8 @@ require 'late-sdk/models/edit_inbox_message200_response_data'
163
168
  require 'late-sdk/models/edit_inbox_message_request'
164
169
  require 'late-sdk/models/edit_inbox_message_request_reply_markup'
165
170
  require 'late-sdk/models/edit_inbox_message_request_reply_markup_keyboard_inner_inner'
171
+ require 'late-sdk/models/edit_post200_response'
172
+ require 'late-sdk/models/edit_post_request'
166
173
  require 'late-sdk/models/enroll_contacts200_response'
167
174
  require 'late-sdk/models/enroll_contacts_request'
168
175
  require 'late-sdk/models/error_response'
@@ -244,10 +251,19 @@ require 'late-sdk/models/get_google_business_location_details200_response_servic
244
251
  require 'late-sdk/models/get_google_business_location_details200_response_service_items_inner_price'
245
252
  require 'late-sdk/models/get_google_business_location_details200_response_service_items_inner_structured_service_item'
246
253
  require 'late-sdk/models/get_google_business_location_details200_response_special_hours'
254
+ require 'late-sdk/models/get_google_business_performance200_response'
255
+ require 'late-sdk/models/get_google_business_performance200_response_date_range'
256
+ require 'late-sdk/models/get_google_business_performance200_response_metrics_value'
257
+ require 'late-sdk/models/get_google_business_performance200_response_metrics_value_values_inner'
258
+ require 'late-sdk/models/get_google_business_performance400_response'
247
259
  require 'late-sdk/models/get_google_business_reviews200_response'
248
260
  require 'late-sdk/models/get_google_business_reviews200_response_reviews_inner'
249
261
  require 'late-sdk/models/get_google_business_reviews200_response_reviews_inner_review_reply'
250
262
  require 'late-sdk/models/get_google_business_reviews200_response_reviews_inner_reviewer'
263
+ require 'late-sdk/models/get_google_business_search_keywords200_response'
264
+ require 'late-sdk/models/get_google_business_search_keywords200_response_keywords_inner'
265
+ require 'late-sdk/models/get_google_business_search_keywords200_response_month_range'
266
+ require 'late-sdk/models/get_google_business_search_keywords400_response'
251
267
  require 'late-sdk/models/get_inbox_conversation200_response'
252
268
  require 'late-sdk/models/get_inbox_conversation200_response_data'
253
269
  require 'late-sdk/models/get_inbox_conversation_messages200_response'