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

    Interface OcfEquivalenceResult

    Result of OCF equivalence comparison.

    interface OcfEquivalenceResult {
        equivalent: boolean;
        normalizationA: {
            normalizedFields: string[];
            warnings: string[];
            wasNormalized: boolean;
        };
        normalizationB: {
            normalizedFields: string[];
            warnings: string[];
            wasNormalized: boolean;
        };
    }
    Index

    Properties

    equivalent: boolean

    Whether the objects are equivalent after normalization

    normalizationA: {
        normalizedFields: string[];
        warnings: string[];
        wasNormalized: boolean;
    }

    Normalization details for the first object

    normalizationB: {
        normalizedFields: string[];
        warnings: string[];
        wasNormalized: boolean;
    }

    Normalization details for the second object