LoginCustomerResponse
Response of login customer.
interface LoginCustomerResponse {
customer_id?: null | number;
errorMessage?: string;
is_valid?: boolean;
token?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
customer_id | Optional | null | number | The unique numeric ID of the customer. |
errorMessage | Optional | string | Error message. |
is_valid | Optional | boolean | Indicates if the provided credentials are valid. |
token | Optional | string | Authentication token |