Edi.X12.Hipaa.R5010.Elements.CompositeMedicalProcedureIdentifier (EDI X12 v0.1.4)
View SourceC003 - Composite Medical Procedure Identifier
To identify a medical procedure by its standardized codes and applicable modifiers
Summary
Types
@type t() :: %Edi.X12.Hipaa.R5010.Elements.CompositeMedicalProcedureIdentifier{ __key__: :composite_medical_procedure_identifier, description: nil | binary(), procedure_modifier_1: nil | binary(), procedure_modifier_2: nil | binary(), procedure_modifier_3: nil | binary(), procedure_modifier_4: nil | binary(), product_service_id_1: binary(), product_service_id_2: nil | binary(), product_service_id_qualifier: Edi.X12.Identifier.t() }
Functions
@spec parse(binary()) :: {:ok, t()} | {:error, binary()}
@spec parse(keyword() | map()) :: {:ok, t()} | {:error, binary()}
Convert the list into a struct.
Examples
iex> parse(elem_1: "Y", elem_2: "ZZ")
{:ok, %Struct{elem_1: "Y", elem_2: "ZZ"}}
Convert the list into a struct.
Examples
iex> parse!(elem_1: "Y", elem_2: "ZZ")
%Struct{
elem_1: "Y",
elem_2: "ZZ"
}