use crate::healthcare::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OtherPayerServiceFacilityLocation {
#[serde(rename = "otherPayerServiceFacilityLocationSecondaryIdentifier")]
pub other_payer_service_facility_location_secondary_identifier: Vec<models::OtherPayerServiceFacilityLocationSecondaryIdentifierItem>,
}
impl OtherPayerServiceFacilityLocation {
pub fn new(other_payer_service_facility_location_secondary_identifier: Vec<models::OtherPayerServiceFacilityLocationSecondaryIdentifierItem>) -> OtherPayerServiceFacilityLocation {
OtherPayerServiceFacilityLocation {
other_payer_service_facility_location_secondary_identifier,
}
}
}