Class: Onlyfans::Models::DataExportListResponse::Data::Data
Defined Under Namespace
Classes: Account
Instance Attribute Summary collapse
Instance Method Summary
collapse
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(data: nil, meta: nil) ⇒ Object
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 136
class Data < Onlyfans::Internal::Type::BaseModel
optional :id, String
optional :accounts,
-> { Onlyfans::Internal::Type::ArrayOf[Onlyfans::Models::DataExportListResponse::Data::Data::Account] }
optional :completed_at, String
optional :created_at, String
optional :credit_cost, Integer
optional :download_url, String
optional :download_url_expires_at, String
optional :end_date, String
optional :export_columns, Onlyfans::Internal::Type::ArrayOf[String]
optional :failed_at, String, nil?: true
optional :failed_reason, String, nil?: true
optional :file_type, String
optional :progress_percentage, Integer
optional :rows_processed, Integer
optional :start_date, String
optional :status, String
optional :total_rows, Integer
optional :type, String
class Account < Onlyfans::Internal::Type::BaseModel
optional :id, String
optional :display_name, String
end
end
|
Instance Attribute Details
#completed_at ⇒ String?
151
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 151
optional :completed_at, String
|
#created_at ⇒ String?
156
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 156
optional :created_at, String
|
#credit_cost ⇒ Integer?
161
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 161
optional :credit_cost, Integer
|
#download_url ⇒ String?
166
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 166
optional :download_url, String
|
#download_url_expires_at ⇒ String?
171
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 171
optional :download_url_expires_at, String
|
#end_date ⇒ String?
176
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 176
optional :end_date, String
|
#export_columns ⇒ Array<String>?
181
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 181
optional :export_columns, Onlyfans::Internal::Type::ArrayOf[String]
|
#failed_at ⇒ String?
186
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 186
optional :failed_at, String, nil?: true
|
#failed_reason ⇒ String?
191
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 191
optional :failed_reason, String, nil?: true
|
#file_type ⇒ String?
196
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 196
optional :file_type, String
|
#id ⇒ String?
140
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 140
optional :id, String
|
#progress_percentage ⇒ Integer?
201
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 201
optional :progress_percentage, Integer
|
#rows_processed ⇒ Integer?
206
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 206
optional :rows_processed, Integer
|
#start_date ⇒ String?
211
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 211
optional :start_date, String
|
#status ⇒ String?
216
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 216
optional :status, String
|
#total_rows ⇒ Integer?
221
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 221
optional :total_rows, Integer
|
#type ⇒ String?
226
|
# File 'lib/onlyfans/models/data_export_list_response.rb', line 226
optional :type, String
|