Types
Context
namespace: privmx::endpoint::core
struct privmx::endpoint::core::Context{...}
Fields
Name | Type | Description |
---|---|---|
userId | std::string | ID of the user requesting information |
contextId | std::string | ID of the Context |
PagingList
namespace: privmx::endpoint::core
struct privmx::endpoint::core::PagingList{...}
Fields
Name | Type | Description |
---|---|---|
totalAvailable | int64_t | total items available to get |
readItems | std::vector< T > | list of items read during single method call |
PagingQuery
namespace: privmx::endpoint::core
struct privmx::endpoint::core::PagingQuery{...}
Fields
Name | Type | Description |
---|---|---|
skip | int64_t | number of elements to skip from result |
limit | int64_t | limit of elements to return for query |
sortOrder | std::string | order of elements in result ("asc" for ascending, "desc" for descending) |
lastId | std::optional< std::string > | ID of the element from which query results should start |
UserWithPubKey
namespace: privmx::endpoint::core
struct privmx::endpoint::core::UserWithPubKey{...}
Fields
Name | Type | Description |
---|---|---|
userId | std::string | ID of the user |
pubKey | std::string | user's public key |