[][src]Function indyrs::wallet::delete_wallet_record_tags

pub fn delete_wallet_record_tags(
    wallet_handle: WalletHandle,
    xtype: &str,
    id: &str,
    tag_names_json: &str
) -> Box<dyn Future<Item = (), Error = IndyError>>

Delete tags from the wallet record

Arguments

  • wallet_handle - wallet handle (created by open_wallet)
  • xtype - 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", ...]