Interface Port

Encapsulates typed und untyped workflow metadata for case properties

interface Port {
    address?: AddressModel;
    bbox?: Bbox;
    confidence?: number;
    country?: string;
    display?: boolean;
    errors?: ErrorModel[];
    hasAirport?: boolean;
    hasPostalExchangeOffice?: boolean;
    hasRailTerminal?: boolean;
    hasRoadTerminal?: boolean;
    input?: string;
    keywords?: string[];
    lastChangedBy?: string;
    location?: string;
    modifiedAt?: number;
    modifiedBy?: {
        displayName?: string;
        id?: string;
    };
    name?: string;
    options?: string[];
    reason?: any;
    required?: boolean;
    reviewNeeded?: boolean;
    searchValue?: string;
    source?: string;
    type?: PortType;
    userEdited?: boolean;
    value?: string;
}

Hierarchy (view full)

Properties

address?: AddressModel
bbox?: Bbox

Bounding box of extracted value

confidence?: number

Confidence supplied by data extraction or 1.0 if entered by human

country?: string

Part of the UN/Locode

display?: boolean
errors?: ErrorModel[]

could be validation errors

hasAirport?: boolean
hasPostalExchangeOffice?: boolean
hasRailTerminal?: boolean
hasRoadTerminal?: boolean
input?: string

The input value which was initially supplied for the property

keywords?: string[]
lastChangedBy?: string

Encoded user (username, userId, etc.)

Deprecated

location?: string

Part of the UN/Locode

modifiedAt?: number

Last modification date (user or machine), as a UTC unix timestamp

modifiedBy?: {
    displayName?: string;
    id?: string;
}

Field last changed by

Type declaration

  • Optional displayName?: string
  • Optional id?: string
name?: string
options?: string[]
reason?: any
required?: boolean
reviewNeeded?: boolean
searchValue?: string

Normalized searchValue, for any related queries. Needs to be a string, even if value is of a different type.

source?: string
type?: PortType
userEdited?: boolean

Mark this property as user-edited (as opposed to machine-generated)

value?: string

The current value of the property

Generated using TypeDoc