syntax = "proto3";

package proto;

option java_package = "com.hederahashgraph.api.proto.java";
option java_multiple_files = true;

import "BasicTypes.proto";

/* Delete a claim hash that was attached to the given account. This transaction is valid if signed by all the keys used for transfers out of the account. It is also valid if signed by any single ThresholdKeys in the deleteKeys list for this hash. See CryptoAddClaimTransaction for more information about claim hashes. */
message CryptoDeleteClaimTransactionBody {
    AccountID accountIDToDeleteFrom = 2; // the account that should have a claim deleted
    bytes hashToDelete = 3; // the hash in the claim to delete (a SHA-384 hash, 48 bytes)
}
