Core
Context
Contains base Context information.
public class Context{
String contextId,
String userId
}
Fields
Name | Type | Description |
---|---|---|
contextId | String | ID of the Context. |
userId | String | ID of the user requesting information. |
PagingList
Contains results of listing methods.
public class PagingList<T>{
List<T> readItems,
Long totalAvailable
}
Fields
Name | Type | Description |
---|---|---|
readItems | List<T> | List of items read during single method call. |
totalAvailable | Long | Total items available to get. |
UserWithPubKey
Contains ID of user and the corresponding public key.
public class UserWithPubKey{
String pubKey,
String userId
}
Fields
Name | Type | Description |
---|---|---|
pubKey | String | User's public key. |
userId | String | ID of the user. |