Variable $PaginatedTransactionsConst
$PaginatedTransactions: {
additionalProperties: false;
properties: {
total: {
description: "The total number of transactions.";
example: 1;
type: "integer";
};
transactions: {
description: "The list of transactions.";
items: {
$ref: "#/components/schemas/Transaction";
};
type: "array";
};
};
readOnly: true;
required: readonly ["transactions", "total"];
} = ...