pub type PbGetTableChangeLogsRequest = GetTableChangeLogsRequest;Aliased Type§
pub struct PbGetTableChangeLogsRequest {
pub epoch_only: bool,
pub exclude_empty: bool,
pub start_epoch_inclusive: Option<u64>,
pub end_epoch_inclusive: Option<u64>,
pub table_ids: Option<TableFilter>,
pub limit: Option<u32>,
}Fields§
§epoch_only: boolIf true, returns only the epoch without the full log bodies.
exclude_empty: bool§start_epoch_inclusive: Option<u64>Defines the epoch range to fetch.
end_epoch_inclusive: Option<u64>§table_ids: Option<TableFilter>Defines the tables to fetch.
limit: Option<u32>Limit the number of EpochNewChangeLog returned for each table.