Skip to main content
reference

Core

Context

Contains base Context information.

public class Context{
String contextId,
String userId
}

Fields

NameTypeDescription
contextIdStringID of the Context.
userIdStringID of the user requesting information.

PagingList

Contains results of listing methods.

public class PagingList<T>{
List<T> readItems,
Long totalAvailable
}

Fields

NameTypeDescription
readItemsList<T>List of items read during single method call.
totalAvailableLongTotal items available to get.

UserWithPubKey

Contains ID of user and the corresponding public key.

public class UserWithPubKey{
String pubKey,
String userId
}

Fields

NameTypeDescription
pubKeyStringUser's public key.
userIdStringID of the user.