Function libindy_sys::indy_delete_wallet_record_tags[][src]

pub unsafe extern "C" fn indy_delete_wallet_record_tags(
    command_handle: indy_handle_t,
    wallet_handle: indy_handle_t,
    type_: *const c_char,
    id: *const c_char,
    tag_names_json: *const c_char,
    cb: indy_empty_cb
) -> indy_error_t

Delete tags from the wallet record

#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 tag_names_json: the list of tag names to remove from the record as json array: ["tagName1", "tagName2", ...]