autogen-stedi 0.3.2

Auto-generated, strongly-typed Rust client for the Stedi APIs
Documentation
/*
 * Stedi Healthcare
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2024-04-01
 * Contact: healthcare@stedi.com
 * Generated by: https://openapi-generator.tech
 */

use crate::healthcare::models;
use serde::{Deserialize, Serialize};

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OtherPayerServiceFacilityLocation {
    /// A secondary identifier for the service facility location.
    #[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,
        }
    }
}