Added even more fields to proj and prop

This commit is contained in:
Franklin 2023-05-03 13:27:34 -04:00
parent d305f96879
commit 3cdcfa32ec
2 changed files with 15 additions and 2 deletions

View File

@ -1,4 +1,4 @@
use chrono::{DateTime, Utc};
use chrono::{DateTime, Utc, NaiveDateTime};
use serde::{Serialize, Deserialize};
use uuid::Uuid;
@ -21,6 +21,11 @@ pub struct Project {
pub country: String,
pub city: String,
pub district: String,
#[serde(rename = "adminTag", skip_serializing_if = "Option::is_none")]
pub admin_tag: Option<String>,
pub floors: i16,
#[serde(rename = "finishDate")]
pub finish_date: NaiveDateTime,
/// This gives the realtor the option to order the projects/properties. On birth,
#[serde(rename = "orderIndex")]
pub order_index: u16,

View File

@ -5,7 +5,7 @@ use uuid::Uuid;
use super::{media::MediaList, property_type::PropertyType, property_sale_type::PropertySaleType};
/// A property can belong to a project, or not. It should always belong to a realtor.
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq, Eq, PartialOrd, Ord)]
#[derive(Serialize, Deserialize, Debug, Default, Clone, PartialEq, PartialOrd)]
pub struct Property {
pub id: Uuid,
#[serde(rename = "projectId")]
@ -23,6 +23,14 @@ pub struct Property {
pub city: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub district: Option<String>,
#[serde(rename = "priceUsd")]
pub price_usd: f64,
/// Amount of rooms in unit
pub rooms: i16,
/// Amount of bathrooms in unit
pub bathrooms: f32,
/// In meters squared
pub area: f32,
#[serde(rename = "timeCreated")]
pub time_created: DateTime<Utc>,
#[serde(rename = "lastUpdated")]