import { z } from "zod";

export const eqaroLandlordsSchema = z.object({
    id: z.number(),
    email: z.string(),
    password: z.string(),
    userType: z.string(),
    profileId: z.string(),
    accessToken: z.string(),
    tokenExpiresAt: z.string().datetime(),
    status: z.number(),
    clientId: z.number(),
    landlordId: z.string(),
    mobile: z.string(),
    relation: z.number(),
    createdAt: z.string().datetime(),
    updatedAt: z.string().datetime(),
});

type eqaroLandlordsType = z.infer<typeof eqaroLandlordsSchema>;

export default eqaroLandlordsType;