use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PrepDetails {
#[serde(rename = "PrepInstruction")]
pub prep_instruction: models::fulfillment_inbound_v0::PrepInstruction,
#[serde(rename = "PrepOwner")]
pub prep_owner: models::fulfillment_inbound_v0::PrepOwner,
}
impl PrepDetails {
pub fn new(prep_instruction: models::fulfillment_inbound_v0::PrepInstruction, prep_owner: models::fulfillment_inbound_v0::PrepOwner) -> PrepDetails {
PrepDetails {
prep_instruction,
prep_owner,
}
}
}