fix: Change CSV serialization headers

Makes for easier imports into Cellario CP orders
shoutout to my employer ;)
This commit is contained in:
Emilia Allison 2024-08-04 14:00:35 -04:00
parent 7defd8ff08
commit 94386a0485
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
1 changed files with 2 additions and 2 deletions

View File

@ -4,11 +4,11 @@ use crate::{plate::PlateFormat, transfer::Transfer, util::num_to_letters};
#[derive(Serialize, Debug, Clone)]
pub struct TransferRecord {
#[serde(rename = "Source Plate")]
#[serde(rename = "Source Barcode")]
pub source_plate: String,
#[serde(rename = "Source Well")]
pub source_well: String,
#[serde(rename = "Dest Plate")]
#[serde(rename = "Dest Barcode")]
pub destination_plate: String,
#[serde(rename = "Destination Well")]
pub destination_well: String,