Edi.X12.Hipaa.R5010.Segments.RequestValidation (EDI X12 v0.1.4)
View SourceAAA - Request Validation
To specify the validity of the request and indicate follow-up action authorized
Summary
Types
@type t() :: %Edi.X12.Hipaa.R5010.Segments.RequestValidation{ agency_qualifier_code: nil | Edi.X12.Identifier.t(), follow_up_action_code: nil | Edi.X12.Identifier.t(), reject_reason_code: nil | Edi.X12.Identifier.t(), yes_no_condition_or_response_code: 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"
}