Interface PaymentMethodCustomFieldChangedMessagePayload

Generated after changing an existing Custom Field on a Payment Method using the Set CustomField update action.

interface PaymentMethodCustomFieldChangedMessagePayload {
    name: string;
    oldValue?: any;
    type: "PaymentMethodCustomFieldChanged";
    value: any;
}

Hierarchy (View Summary)

Properties

name: string

Name of the Custom Field that changed.

oldValue?: any

CustomFieldValue based on the FieldType before the Set CustomField update action.

type: "PaymentMethodCustomFieldChanged"
value: any

CustomFieldValue based on the FieldType after the Set CustomField update action.