Edi.X12.Hipaa.R5010.Segments.ProviderInformation (EDI X12 v0.1.4)
View SourcePRV - Provider Information
To specify the identifying characteristics of a provider
Summary
Types
@type t() :: %Edi.X12.Hipaa.R5010.Segments.ProviderInformation{ provider_code: Edi.X12.Identifier.t(), provider_organization_code: nil | Edi.X12.Identifier.t(), provider_specialty_information: nil | any(), reference_identification: nil | binary(), reference_identification_qualifier: nil | Edi.X12.Identifier.t(), state_or_province_code: nil | 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"
}