/* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ export type TransferNftFlowPK = { /** * Chain to work with. */ chain: 'FLOW'; /** * Blockchain address to send NFT token to. */ to: string; /** * ID of token to be sent. */ tokenId: string; /** * Address of NFT token */ contractAddress: string; /** * Blockchain address of the sender account. */ account: string; /** * Private key of sender address. Private key, mnemonic and index or signature Id must be present. */ privateKey: string; }