Open Cap Table Protocol Canton SDK - v0.2.224
    Preparing search index...

    Interface MigrationResult<T>

    Result of migrating deprecated fields in an object.

    interface MigrationResult<T> {
        data: T;
        migrated: boolean;
        migratedFields: string[];
        warnings: string[];
    }

    Type Parameters

    • T
    Index

    Properties

    data: T

    The migrated data with deprecated fields converted to current format

    migrated: boolean

    Whether any migrations were performed

    migratedFields: string[]

    List of fields that were migrated

    warnings: string[]

    List of warnings (e.g., both deprecated and current fields present)