/*
* 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};
/// OtherPayerOperatingPhysician : Information regarding the other payer's operating physician. The operating physician is the provider who performed the procedure.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OtherPayerOperatingPhysician {
/// The `qualifier` can be set to `OB` - State License Number, `1G` - Provider UPIN Number, `G2` - Provider Commercial Number, or `LU` - Location Number. Note that UPIN numbers are deprecated and should not be used in new claims.
#[serde(rename = "otherPayerOperatingPhysicianIdentifier")]
pub other_payer_operating_physician_identifier: Vec<models::InstitutionalReferenceIdentification>,
}
impl OtherPayerOperatingPhysician {
/// Information regarding the other payer's operating physician. The operating physician is the provider who performed the procedure.
pub fn new(other_payer_operating_physician_identifier: Vec<models::InstitutionalReferenceIdentification>) -> OtherPayerOperatingPhysician {
OtherPayerOperatingPhysician {
other_payer_operating_physician_identifier,
}
}
}