vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface RetrieveResultComponent<F>

    Represents a single component in a retrieve result package with all its related files.

    RetrieveResult

    interface RetrieveResultComponent<
        F extends
            SalesforceRetrievedComponentFile = SalesforceRetrievedComponentFile,
    > {
        componentName: string;
        componentType: string;
        files: F[];
        fullName: string;
    }

    Type Parameters

    Index

    Properties

    componentName: string

    The component name (e.g. MyClass)

    componentType: string

    The component type (e.g. ApexClass)

    files: F[]

    The files tha represent this component.

    fullName: string

    The full name of the component (e.g. ApexClass/MyClass)