TrieveRubyClient::GetEventsData
Properties
| Name |
Type |
Description |
Notes |
| event_types |
Array<String> |
The types of events to get. Any combination of file_uploaded, chunk_uploaded, chunk_action_failed, chunk_updated, or qdrant_index_failed. Leave undefined to get all events. |
[optional] |
| page |
Integer |
The page number to get. Default is 1. |
[optional] |
| page_size |
Integer |
The number of items per page. Default is 10. |
[optional] |
Example
require 'trieve_ruby_client'
instance = TrieveRubyClient::GetEventsData.new(
event_types: null,
page: null,
page_size: null
)