jmap-kit
    Preparing search index...

    Type Alias BlobCopyResponseInvocationArgs

    type BlobCopyResponseInvocationArgs = {
        accountId: Id;
        copied: Record<Id, Id> | null;
        fromAccountId: Id;
        notCopied: Record<Id, SetError<"create", "notFound">> | null;
    }
    Index

    Properties

    accountId: Id

    The id of the account blobs were copied to.

    copied: Record<Id, Id> | null

    A map of the blobId in the fromAccount to the id for the blob in the account it was copied to, or null if none were successfully copied.

    fromAccountId: Id

    The id of the account blobs were copied from.

    notCopied: Record<Id, SetError<"create", "notFound">> | null

    A map of blobId to a SetError object for each blob that failed to be copied, or null if none.