NJFFormResponseType

export interface NJFFormResponseType {
  status: boolean;
  success?: string;
  error?: string;
  data?: any;
}
PropertyTypeDescription
statusboolean*Status of the response.
successstring?Success message.
errorstring?Error message.
dataany?Any data that the response may have.

* = Required ? = Optional