/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ /** * Real estate (physical location) details */ export type RegisterFursRealEstatePremiseBodyRealEstate = { /** * Cadastral number of the property (required, numeric, max 9999) * @minLength 1 * @pattern ^\d+$ */ cadastral_number: string; /** * Building number (required, numeric, max 99999) * @minLength 1 * @pattern ^\d+$ */ building_number: string; /** * Building section number (required, numeric, max 9999) * @minLength 1 * @pattern ^\d+$ */ building_section: string; /** * Street name (required, max 100 chars) * @minLength 1 * @maxLength 100 */ street: string; /** * House number (required, max 10 chars) * @minLength 1 * @maxLength 10 */ house_number: string; /** * Additional house number suffix (optional, max 10 chars) * @maxLength 10 * @nullable */ house_number_additional?: string | null; /** * Community / občina name (required, max 100 chars) * @minLength 1 * @maxLength 100 */ community: string; /** * City name (required, max 100 chars) * @minLength 1 * @maxLength 100 */ city: string; /** * Postal code (required, exactly 4 digits) * @minLength 4 * @maxLength 4 * @pattern ^\d{4}$ */ postal_code: string; }; //# sourceMappingURL=registerFursRealEstatePremiseBodyRealEstate.d.ts.map