// TODO: Turn this into a tagged union const PassportFile = @import("PassportFile.zig"); pub const Type = enum { personal_details, passport, driver_license, identity_card, internal_passport, address, utility_bill, bank_statement, rental_agreement, passport_registration, temporary_registration, phone_number, email, }; type: Type, data: ?[]const u8, phone_number: ?[]const u8, email: ?[]const u8, files: ?[]PassportFile, front_side: ?PassportFile, reverse_side: ?PassportFile, selfie: ?PassportFile, translation: ?[]PassportFile, hash: []const u8,