Record - A record in an app.

Constructors

  • Parameters

    • appId: number

      The id of the app that the record belongs to.

    • recordId: null | number

      The id of the record.

    • fieldData: RecordValue<any>[] = []

      The data for the fields in the record.

    Returns Record

    • A new instance of Record.

Properties

appId: number
fieldData: RecordValue<any>[]
recordId: null | number

Methods

  • Parameters

    • fieldData: RecordValue<any>

      The value to add to the record.

    Returns void

    Method

    addValue - Adds a value to the record.

  • Parameters

    • fieldData: RecordValue<any>[]

      The values to add to the record.

    Returns void

    Method

    addValues - Adds values to the record.

  • Returns SaveRecordRequest

    • A SaveRecordRequest.

    Method

    convertToSaveRecordRequest - Converts the record to a SaveRecordRequest.