Edi.X12.Hipaa.R5010.Segments.HealthCareInformationCodes (EDI X12 v0.1.4)
View SourceHI - Health Care Information Codes
To supply information related to the delivery of health care
Summary
Types
@type t() :: %Edi.X12.Hipaa.R5010.Segments.HealthCareInformationCodes{ health_care_code_information_1: any(), health_care_code_information_10: nil | any(), health_care_code_information_11: nil | any(), health_care_code_information_12: nil | any(), health_care_code_information_2: nil | any(), health_care_code_information_3: nil | any(), health_care_code_information_4: nil | any(), health_care_code_information_5: nil | any(), health_care_code_information_6: nil | any(), health_care_code_information_7: nil | any(), health_care_code_information_8: nil | any(), health_care_code_information_9: nil | any() }
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"
}