Change triggered by the Set Address Custom Type update action.

interface SetAddressCustomTypeChange {
    address: Address;
    change: string;
    nextValue: CustomFields;
    previousValue: CustomFields;
    type: "SetAddressCustomTypeChange";
}

Properties

address: Address

Address which was extended.

change: string
nextValue: CustomFields

Value after the change.

previousValue: CustomFields

Value before the change.

type: "SetAddressCustomTypeChange"