NJFFormResponseType
export interface NJFFormResponseType {
status: boolean;
success?: string;
error?: string;
data?: any;
}
Property | Type | Description |
---|---|---|
status | boolean* | Status of the response. |
success | string? | Success message. |
error | string? | Error message. |
data | any? | Any data that the response may have. |
* = Required
? = Optional