9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
import * as z from 'zod';
|
|
export const InsuranceCredentialUpdateResultSchema = z.nullable(z.object({
|
|
id: z.number().int(),
|
|
userId: z.number().int(),
|
|
siteKey: z.string(),
|
|
username: z.string(),
|
|
password: z.string(),
|
|
user: z.unknown()
|
|
})); |