Variable PeerCallRecordSchemaConst
PeerCallRecordSchema: ZodObject<{
answeredAt: ZodOptional<ZodString>;
calleeId: ZodString;
callerId: ZodString;
callId: ZodString;
createdAt: ZodString;
endedAt: ZodOptional<ZodString>;
endReason: ZodOptional<ZodEnum<["hangup", "decline", "timeout", "insufficient_funds", "error"]>>;
sid: ZodString;
status: ZodEnum<["ringing", "active", "ended", "declined", "missed", "failed"]>;
}, "strip", ZodTypeAny, {
answeredAt?: string;
calleeId: string;
callerId: string;
callId: string;
createdAt: string;
endedAt?: string;
endReason?:
| "error"
| "hangup"
| "decline"
| "timeout"
| "insufficient_funds";
sid: string;
status:
| "ringing"
| "active"
| "ended"
| "declined"
| "missed"
| "failed";
}, {
answeredAt?: string;
calleeId: string;
callerId: string;
callId: string;
createdAt: string;
endedAt?: string;
endReason?:
| "error"
| "hangup"
| "decline"
| "timeout"
| "insufficient_funds";
sid: string;
status:
| "ringing"
| "active"
| "ended"
| "declined"
| "missed"
| "failed";
}> = ...