pub struct PricingRequest {
pub npis: Vec<String>,
pub condition_code: String,
pub plan_id: Option<String>,
pub code_type: Option<CodeType>,
}
Expand description
Request for in-network pricing lookup
Fields§
§npis: Vec<String>
List of National Provider Identifiers (NPIs) to lookup pricing for Must be 10-digit identifiers, 1-10 items allowed
condition_code: String
Medical billing code to retrieve pricing for
plan_id: Option<String>
Insurance plan identifier (EIN, HIOS ID, or Custom Plan ID)
code_type: Option<CodeType>
Medical billing code standard
Implementations§
Source§impl PricingRequest
impl PricingRequest
Sourcepub fn builder() -> PricingRequestBuilder
pub fn builder() -> PricingRequestBuilder
Create an instance of PricingRequest
using the builder syntax
Trait Implementations§
Source§impl Clone for PricingRequest
impl Clone for PricingRequest
Source§fn clone(&self) -> PricingRequest
fn clone(&self) -> PricingRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PricingRequest
impl Debug for PricingRequest
Auto Trait Implementations§
impl Freeze for PricingRequest
impl RefUnwindSafe for PricingRequest
impl Send for PricingRequest
impl Sync for PricingRequest
impl Unpin for PricingRequest
impl UnwindSafe for PricingRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more