LimeObjectLoadDetail: {
    id: number;
    limetype: string;
    properties: (string | AggregateProperty)[];
    addProperty(property: string | AggregateProperty): void;
}

Type declaration

  • id: number

    The ID of the object that will be loaded

  • limetype: string

    Name of the LimeType of the object that will be loaded

  • properties: (string | AggregateProperty)[]

    The properties that will be loaded on the object

  • addProperty:function
    • Add a property that will be included in the response when the object is fetched from the server. Supports nested properties when using dot notation, e.g. person.company.name

      Parameters

      Returns void