Change triggered by the Set Address Custom Field update action.

interface SetAddressCustomFieldChange {
    address: Address;
    change: string;
    customTypeId: string;
    name: string;
    nextValue: any;
    previousValue: any;
    type: "SetAddressCustomFieldChange";
}

Properties

address: Address

Address which was extended.

change: string
customTypeId: string

id of the referenced Type.

name: string

Name of the Custom Field.

nextValue: any

Value after the change.

previousValue: any

Value before the change.

type: "SetAddressCustomFieldChange"