Function libindy_sys::indy_fetch_wallet_search_next_records[][src]

pub unsafe extern "C" fn indy_fetch_wallet_search_next_records(
    command_handle: indy_handle_t,
    wallet_handle: indy_handle_t,
    wallet_search_handle: indy_handle_t,
    count: indy_u32_t,
    cb: indy_str_cb
) -> indy_error_t

Get an wallet record by id

#Params command_handle: command handle to map callback to caller context wallet_handle: wallet handle (created by open_wallet) type_: allows to separate different record types collections id: the id of record options_json: //TODO: FIXME: Think about replacing by bitmask { retrieveType: (optional, false by default) Retrieve record type, retrieveValue: (optional, true by default) Retrieve record value, retrieveTags: (optional, true by default) Retrieve record tags } #Returns wallet record json: { id: "Some id", type: "Some type", // present only if retrieveType set to true value: "Some value", // present only if retrieveValue set to true tags: , // present only if retrieveTags set to true }