Variable ClientLegalIdentifierSchemaConst
ClientLegalIdentifierSchema: ZodObject<
{
type: ZodEnum<["ICE", "RC", "SIRET", "DUNS", "VAT", "OTHER"]>;
value: ZodString;
country: ZodOptional<ZodString>;
isActive: ZodBoolean;
},
"strip",
ZodTypeAny,
{
type: "OTHER"
| "ICE"
| "RC"
| "SIRET"
| "DUNS"
| "VAT";
value: string;
country?: string;
isActive: boolean;
},
{
type: "OTHER"
| "ICE"
| "RC"
| "SIRET"
| "DUNS"
| "VAT";
value: string;
country?: string;
isActive: boolean;
},
> = ...