Hierarchy

  • SalesforceProfile

Constructors

Properties

#hasChanges: boolean = false
arrayProperties: string[] = ...
name: string
profileModel: ProfileModel = ...
sortConfig: ProfileSortConfig = ...

Accessors

Methods

  • Type Parameters

    • TElement

    Parameters

    • array: TElement[]
    • predicate: ((item) => boolean)
        • (item): boolean
        • Parameters

          • item: TElement

          Returns boolean

    Returns any

  • Convert the current profile object to XML metadata

    Parameters

    • Optional options: {
          sort?: boolean;
      }
      • Optional sort?: boolean

    Returns string

    XML metadata representation of the current profile object

  • Update an arbitrary property on the profile object. If the new value is different than the current value, the change will be tracked.

    Type Parameters

    • T extends object

    • K extends string | number | symbol

    Parameters

    • target: T

      The object to update

    • key: K

      Property name to update

    • value: T[K]

      Value to set the property to

    Returns void