Lime Web Components API Documentation - v6.24.0
    Preparing search index...

    Interface LimeType

    interface LimeType {
        acl: Acl;
        label: string;
        localname: { plural: string; singular: string };
        name: string;
        properties: Record<string, LimeProperty>;
        getProperty(name: string): LimeProperty;
    }
    Index

    Properties

    acl: Acl
    label: string
    localname: { plural: string; singular: string }
    name: string
    properties: Record<string, LimeProperty>

    Methods

    • Get a property by name

      Parameters

      • name: string

        name of property to get. Allows a path to be specified using dot notation to get properties of relations

      Returns LimeProperty

      the property specified by the name argument

      Will throw an error containing the name of the missing property

      const phoneProperty = dealLimetype.getProperty('company.phone')