import { DefaultSendArgs } from './defaultSendArgs'; /** * The argument object for {@link AssetApi.transferAssetOwnership} * * * @category args */ export interface TransferAssetOwnershipArgs extends DefaultSendArgs { /** * The id of the recipient, i.e. new owner */ recipientId: string; /** * The full hash of the token issuance transaction */ referencedTransactionFullHash: string; /** * The _optional_ recipients public key in hex format. */ recipientPublicKey?: string; }