LibNGAP_Templates.ttcn 1.75 MB
Newer Older
7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723
                } // End of template m_cause_radioNetwork

                template (value) Cause m_cause_transport(
                                                        in template (value) CauseTransport p_transport
                                                        ) := {
                    transport := p_transport
                } // End of template m_cause_transport

                template (value) Cause m_cause_nas(
                                                in template (value) CauseNas p_nas
                                                ) := {
                    nas := p_nas
                } // End of template m_cause_nas

                template (value) Cause m_cause_protocol(
                                                        in template (value) CauseProtocol p_protocol
                                                        ) := {
                    protocol := p_protocol
                } // End of template m_cause_protocol

                template (value) Cause m_cause_misc(
                                                    in template (value) CauseMisc p_misc
                                                    ) := {
                    misc := p_misc
                } // End of template m_cause_misc

                template (value) Cause m_cause_ext(
                                                in template (value) Cause.choice_Extensions p_choice_Extensions
                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_cause_ext

                template (value) CauseMisc m_causeMisc(in CauseMisc p_value := unspecified) := p_value;
                template (value) CauseNas m_causeNas(in CauseNas p_value := unspecified) := p_value;
                template (value) CauseProtocol m_causeProtocol(in CauseProtocol p_value := unspecified) := p_value;
                template (value) CauseRadioNetwork m_causeRadioNetwork(in CauseRadioNetwork p_value := unspecified) := p_value;
                template (value) CauseTransport m_causeTransport(in CauseTransport p_value := unspecified) := p_value;

                template (omit) Cell_CAGInformation m_cell_CAGInformation(
                                                                        in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                        in template (value) CellCAGList p_cellCAGList,
                                                                        in template (omit) Cell_CAGInformation.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                    nGRAN_CGI     := p_nGRAN_CGI,
                    cellCAGList   := p_cellCAGList,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cell_CAGInformation

                template (omit) CellIDBroadcastEUTRA_Item m_cellIDBroadcastEUTRA_Item(
                                                                                    in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                    in template (omit) CellIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    eUTRA_CGI     := p_eUTRA_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cellIDBroadcastEUTRA_Item

                template (omit) CellIDBroadcastNR_Item m_cellIDBroadcastNR_Item(
                                                                                in template (value) NR_CGI p_nR_CGI,
                                                                                in template (omit) CellIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    nR_CGI := p_nR_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cellIDBroadcastNR_Item

                template (omit) CellIDCancelledEUTRA_Item m_cellIDCancelledEUTRA_Item(
                                                                                    in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                    in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                    in template (omit) CellIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    eUTRA_CGI          := p_eUTRA_CGI,
                    numberOfBroadcasts := p_numberOfBroadcasts,
                    iE_Extensions      := p_iE_Extensions
                } // End of template m_cellIDCancelledEUTRA_Item

                template (omit) CellIDCancelledNR_Item m_cellIDCancelledNR_Item(
                                                                                in template (value) NR_CGI p_nR_CGI,
                                                                                in template (value) NumberOfBroadcasts p_numberOfBroadcasts,
                                                                                in template (omit) CellIDCancelledNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                ) :=  {
                    nR_CGI             := p_nR_CGI,
                    numberOfBroadcasts := p_numberOfBroadcasts,
                    iE_Extensions      := p_iE_Extensions
                } // End of template m_cellIDCancelledNR_Item

                template (value) CellIDListForRestart m_cellIDListForRestart_eUTRA_CGIListforRestart(
                                                                                                    in template (value) EUTRA_CGIList p_eUTRA_CGIListforRestart
                                                                                                    ) := {
                    eUTRA_CGIListforRestart := p_eUTRA_CGIListforRestart
                } // End of template m_cellIDListForRestart_misc

                template (value) CellIDListForRestart m_cellIDListForRestart_nR_CGIListforRestart(
                                                                                                in template (value) NR_CGIList p_nR_CGIListforRestart
                                                                                                ) := {
                    nR_CGIListforRestart := p_nR_CGIListforRestart
                } // End of template m_cellIDListForRestart_nR_CGIListforRestart

                template (value) CellIDListForRestart m_cellIDListForRestart_ext(
                                                                                in template (value) CellIDListForRestart.choice_Extensions p_choice_Extensions
                                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_cellIDListForRestart_ext

                template (value) CellSize m_cellSize(in CellSize p_value := medium) := p_value;

                template (omit) CellType m_cellType(
                                                    in template (value) CellSize p_cellSize,
                                                    in template (omit) CellType.iE_Extensions p_iE_Extensions := omit
                                                    ) := {
                    cellSize      := p_cellSize,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cellType

                template (value) CEmodeBSupport_Indicator m_cEmodeBSupport_Indicator(in CEmodeBSupport_Indicator p_value := supported) := p_value;
                template (value) CEmodeBrestricted m_cEmodeBrestricted(in CEmodeBrestricted p_value := restricted) := p_value;

                template (omit) CNAssistedRANTuning m_cNAssistedRANTuning(
                                                                        in template (omit) ExpectedUEBehaviour p_expectedUEBehaviour := omit,
                                                                        in template (omit) CNAssistedRANTuning.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                    expectedUEBehaviour := p_expectedUEBehaviour,
                    iE_Extensions       := p_iE_Extensions
                } // End of template m_cNAssistedRANTuning

                template (omit) CNTypeRestrictionsForEquivalentItem m_cNTypeRestrictionsForEquivalentItem(
                                                                                                        in template (value) PLMNIdentity p_plmnIdentity,
                                                                                                        in template (value) CNTypeRestrictionsForEquivalentItem.cn_Type p_cn_Type,
                                                                                                        in template (omit) CNTypeRestrictionsForEquivalentItem.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    plmnIdentity  := p_plmnIdentity,
                    cn_Type       := p_cn_Type,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cNTypeRestrictionsForEquivalentItem

                template (value) CNTypeRestrictionsForServing m_cNTypeRestrictionsForServing(in CNTypeRestrictionsForServing p_value := epc_forbidden) := p_value;

                template (omit) CompletedCellsInEAI_EUTRA_Item m_completedCellsInEAI_EUTRA_Item(
                                                                                                in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                                in template (omit) CompletedCellsInEAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    eUTRA_CGI     := p_eUTRA_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_completedCellsInEAI_EUTRA_Item

                template (omit) CompletedCellsInEAI_NR_Item m_completedCellsInEAI_NR_Item(
                                                                                        in template (value) NR_CGI p_nR_CGI,
                                                                                        in template (omit) CompletedCellsInEAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    nR_CGI        := p_nR_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_completedCellsInEAI_NR_Item

                template (omit) CompletedCellsInTAI_EUTRA_Item m_completedCellsInTAI_EUTRA_Item(
                                                                                                in template (value) EUTRA_CGI p_eUTRA_CGI,
                                                                                                in template (omit) CompletedCellsInTAI_EUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    eUTRA_CGI     := p_eUTRA_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_completedCellsInTAI_EUTRA_Item

                template (omit) CompletedCellsInTAI_NR_Item m_completedCellsInTAI_NR_Item(
                                                                                        in template (value) NR_CGI p_nR_CGI,
                                                                                        in template (omit) CompletedCellsInTAI_NR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    nR_CGI        := p_nR_CGI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_completedCellsInTAI_NR_Item

                template (value) ConcurrentWarningMessageInd m_concurrentWarningMessageInd(in ConcurrentWarningMessageInd p_value := true_) := p_value;
                template (value) ConfidentialityProtectionIndication m_confidentialityProtectionIndication(in ConfidentialityProtectionIndication p_value := required) := p_value;
                template (value) ConfidentialityProtectionResult m_confidentialityProtectionResult(in ConfidentialityProtectionResult p_value := performed) := p_value;
                template (value) ConfiguredTACIndication m_configuredTACIndication(in ConfiguredTACIndication p_value := true_) := p_value;

                template (omit) CoreNetworkAssistanceInformationForInactive m_coreNetworkAssistanceInformationForInactive(
                                                                                                                        in template (value) UEIdentityIndexValue p_uEIdentityIndexValue,
                                                                                                                        in template (value) PeriodicRegistrationUpdateTimer p_periodicRegistrationUpdateTimer,
                                                                                                                        in template (value) TAIListForInactive p_tAIListForInactive,
                                                                                                                        in template (omit) PagingDRX p_uESpecificDRX := omit,
                                                                                                                        in template (omit) MICOModeIndication p_mICOModeIndication := omit,
                                                                                                                        in template (omit) ExpectedUEBehaviour p_expectedUEBehaviour := omit,
                                                                                                                        in template (omit) CoreNetworkAssistanceInformationForInactive.iE_Extensions p_iE_Extensions := omit
                                                                                                                        ) := {
                    uEIdentityIndexValue            := p_uEIdentityIndexValue,
                    uESpecificDRX                   := p_uESpecificDRX,
                    periodicRegistrationUpdateTimer := p_periodicRegistrationUpdateTimer,
                    mICOModeIndication              := p_mICOModeIndication,
                    tAIListForInactive              := p_tAIListForInactive,
                    expectedUEBehaviour             := p_expectedUEBehaviour,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_coreNetworkAssistanceInformationForInactive

                template (value) CoreNetworkAssistanceInformationForInactive.iE_Extensions m_coreNetworkAssistanceInformationForInactive_paging(
                                                                                                                                                in template (value) EUTRA_PagingeDRXInformation p_eUTRA_PagingeDRXInformation,
                                                                                                                                                in template (value) ExtendedUEIdentityIndexValue p_extendedUEIdentityIndexValue,
                                                                                                                                                in template (value) UERadioCapabilityForPaging p_uERadioCapabilityForPaging,
                                                                                                                                                in template (value) MicoAllPLMN p_micoAllPLMN
                                                                                                                                                ) := {
                    {
                        id             := id_EUTRA_PagingeDRXInformation,
                        criticality    := ignore,
                        extensionValue := { EUTRA_PagingeDRXInformation := p_eUTRA_PagingeDRXInformation }
                    },
                    {
                        id             := id_ExtendedUEIdentityIndexValue,
                        criticality    := ignore,
                        extensionValue := { ExtendedUEIdentityIndexValue := p_extendedUEIdentityIndexValue }
                    },
                    {
                        id             := id_UERadioCapabilityForPaging,
                        criticality    := ignore,
                        extensionValue := { UERadioCapabilityForPaging := p_uERadioCapabilityForPaging }
                    },
                    {
                        id             := id_MicoAllPLMN,
                        criticality    := ignore,
                        extensionValue := { MicoAllPLMN := p_micoAllPLMN }
                    }
                    // TODO To be enhanced
                } // End of template m_coreNetworkAssistanceInformationForInactive_paging

                template (omit) COUNTValueForPDCP_SN12 m_cOUNTValueForPDCP_SN12(
                                                                                in template (value) COUNTValueForPDCP_SN12.pDCP_SN12 p_pDCP_SN12,
                                                                                in template (value) COUNTValueForPDCP_SN12.hFN_PDCP_SN12 p_hFN_PDCP_SN12,
                                                                                in template (omit) COUNTValueForPDCP_SN12.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    pDCP_SN12     := p_pDCP_SN12,
                    hFN_PDCP_SN12 := p_hFN_PDCP_SN12,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cOUNTValueForPDCP_SN12

                template (omit) COUNTValueForPDCP_SN18 m_cOUNTValueForPDCP_SN18(
                                                                                in template (value) COUNTValueForPDCP_SN18.pDCP_SN18 p_pDCP_SN18,
                                                                                in template (value) COUNTValueForPDCP_SN18.hFN_PDCP_SN18 p_hFN_PDCP_SN18,
                                                                                in template (omit) COUNTValueForPDCP_SN18.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    pDCP_SN18     := p_pDCP_SN18,
                    hFN_PDCP_SN18 := p_hFN_PDCP_SN18,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_cOUNTValueForPDCP_SN18

                template (value) CPTransportLayerInformation m_cPTransportLayerInformation_endpointIPAddress(
                                                                                                            in template (value) TransportLayerAddress p_endpointIPAddress := PX_TRANSPORT_LAYER_ADDRESS
                                                                                                            ) := {
                    endpointIPAddress := p_endpointIPAddress
                } // End of template m_cPTransportLayerInformation_endpointIPAddress

                template (value) CPTransportLayerInformation m_cPTransportLayerInformation_choice_Extensions(
                                                                                                            in template (value) CPTransportLayerInformation.choice_Extensions p_choice_Extensions
                                                                                                            ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_cPTransportLayerInformation_choice_Extensions

                template (value) CPTransportLayerInformation.choice_Extensions m_cPTransportLayerInformation_ext(
                                                                                                                in template (value) EndpointIPAddressAndPort p_EndpointIPAddressAndPort
                                                                                                                ) := {
                    id          := id_EndpointIPAddressAndPort,
                    criticality := reject,
                    value_      := { EndpointIPAddressAndPort := p_EndpointIPAddressAndPort }
                } // End of template m_cPTransportLayerInformation_ext

                template (omit) CriticalityDiagnostics m_criticalityDiagnostics(
                                                                                in template (omit) ProcedureCode p_procedureCode := omit,
                                                                                in template (omit) TriggeringMessage p_triggeringMessage := omit,
                                                                                in template (omit) Criticality p_procedureCriticality := omit,
                                                                                in template (omit) CriticalityDiagnostics_IE_List p_criticalityDiagnostics_IE_List := omit,
                                                                                in template (omit) CriticalityDiagnostics.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    procedureCode             := p_procedureCode,
                    triggeringMessage         := p_triggeringMessage,
                    procedureCriticality      := p_procedureCriticality,
                    iEsCriticalityDiagnostics := p_criticalityDiagnostics_IE_List,
                    iE_Extensions             := p_iE_Extensions
                } // End of template m_criticalityDiagnostics

                template (omit) CriticalityDiagnostics_IE_Item m_criticalityDiagnostics_IE_Item(
                                                                                                in template (value) Criticality p_iECriticality,
                                                                                                in template (value) ProtocolIE_ID p_iE_ID,
                                                                                                in template (value) TypeOfError p_typeOfError,
                                                                                                in template (omit) CriticalityDiagnostics_IE_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    iECriticality := p_iECriticality,
                    iE_ID         := p_iE_ID,
                    typeOfError   := p_typeOfError,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_criticalityDiagnostics_IE_Item

                template (omit) CellBasedMDT_NR m_cellBasedMDT_NR(
                                                                in template (value) CellIdListforMDT_NR p_cellIdListforMDT,
                                                                in template (omit) CellBasedMDT_NR.iE_Extensions p_iE_Extensions
                                                                ) := {
                    cellIdListforMDT := p_cellIdListforMDT,
                    iE_Extensions    := p_iE_Extensions
                } // End of template m_cellBasedMDT_NR

                template (omit) CellBasedMDT_EUTRA m_cellBasedMDT_EUTRA(
                                                                        in template (value) CellIdListforMDT_EUTRA p_cellIdListforMDT,
                                                                        in template (omit) CellBasedMDT_EUTRA.iE_Extensions p_iE_Extensions
                                                                        ) := {
                    cellIdListforMDT := p_cellIdListforMDT,
                    iE_Extensions    := p_iE_Extensions
                } // End of template m_cellBasedMDT_EUTRA

                template (omit) CellBasedQMC m_cellBasedQMC(
                                                            in template (value) CellIdListforQMC p_cellIdListforQMC,
                                                            in template (omit) CellBasedQMC.iE_Extensions p_iE_Extensions
                                                            ) := {
                    cellIdListforQMC := p_cellIdListforQMC,
                    iE_Extensions    := p_iE_Extensions
                } // End of template m_cellBasedQMC

                template (value) DataForwardingNotPossible m_dataForwardingNotPossible(in DataForwardingNotPossible p_value := data_forwarding_not_possible) := p_value;

                template (value) DataForwardingAccepted m_dataForwardingAccepted(in DataForwardingAccepted p_value := data_forwarding_accepted) := p_value;

                template (omit) DataForwardingResponseDRBItem m_dataForwardingResponseDRBItem(
                                                                                            in template (value) DRB_ID p_dRB_ID,
                                                                                            in template (omit) UPTransportLayerInformation p_dLForwardingUP_TNLInformation := omit,
                                                                                            in template (omit) UPTransportLayerInformation p_uLForwardingUP_TNLInformation := omit,
                                                                                            in template (omit) DataForwardingResponseDRBItem.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                    dRB_ID                        := p_dRB_ID,
                    dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                    uLForwardingUP_TNLInformation := p_uLForwardingUP_TNLInformation,
                    iE_Extensions                 := p_iE_Extensions
                } // End of template m_dataForwardingResponseDRBItem

                template (omit) DAPSRequestInfo m_dAPSRequestInfo(
                                                                in template (value) DAPSRequestInfo.dAPSIndicator p_dAPSIndicator := daps_ho_required,
                                                                in template (omit) DAPSRequestInfo.iE_Extensions p_iE_Extensions := omit
                                                                ) := {
                    dAPSIndicator := p_dAPSIndicator,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_dAPSRequestInfo

                template (omit) DAPSResponseInfoItem m_dAPSResponseInfoItem(
                                                                            in template (value) DRB_ID p_dRB_ID,
                                                                            in template (value) DAPSResponseInfo p_dAPSResponseInfo,
                                                                            in template (omit) DAPSResponseInfoItem.iE_Extension p_iE_Extension := omit
                                                                            ) := {
                    dRB_ID           := p_dRB_ID,
                    dAPSResponseInfo := p_dAPSResponseInfo,
                    iE_Extension     := p_iE_Extension
                } // End of template m_dAPSResponseInfoItem

                template (omit) DAPSResponseInfo m_dAPSResponseInfo(
                                                                    in template (value) DAPSResponseInfo.dapsresponseindicator p_dapsresponseindicator,
                                                                    in template (omit) DAPSResponseInfo.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    dapsresponseindicator := p_dapsresponseindicator,
                    iE_Extensions         := p_iE_Extensions
                } // End of template m_dAPSResponseInfo

                template (omit) DataForwardingResponseERABListItem m_DataForwardingResponseERABListItem(
                                                                                                        in template (value) E_RAB_ID p_e_RAB_ID,
                                                                                                        in template (value) UPTransportLayerInformation p_dLForwardingUP_TNLInformation,
                                                                                                        in template (omit) DataForwardingResponseERABListItem.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    e_RAB_ID                      := p_e_RAB_ID,
                    dLForwardingUP_TNLInformation := p_dLForwardingUP_TNLInformation,
                    iE_Extensions                 := p_iE_Extensions
                } // End of template m_DataForwardingResponseERABListItem

                template (value) DelayCritical m_delayCritical(in DelayCritical p_value) := p_value;

                template (omit) DL_CP_SecurityInformation m_dL_CP_SecurityInformation(
                                                                                    in template (value) DL_NAS_MAC p_dl_NAS_MAC := PX_DL_NAS_MAC,
                                                                                    in template (omit) DL_CP_SecurityInformation.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    dl_NAS_MAC    := p_dl_NAS_MAC,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_dL_CP_SecurityInformation

                template (value) DLForwarding m_dLForwarding(in DLForwarding p_value := dl_forwarding_proposed) := p_value;

                template (value) DL_NGU_TNLInformationReused m_dL_NGU_TNLInformationReused(in DL_NGU_TNLInformationReused p_value := true_) := p_value;

                template (value) DirectForwardingPathAvailability m_directForwardingPathAvailability(in DirectForwardingPathAvailability p_value := direct_path_available) := p_value;

                template (omit) DRBsSubjectToStatusTransferItem m_dRBsSubjectToStatusTransferItem(
                                                                                                in template (value) DRB_ID p_dRB_ID,
                                                                                                in template (value) DRBStatusUL p_dRBStatusUL,
                                                                                                in template (value) DRBStatusDL p_dRBStatusDL,
                                                                                                in template (omit) DRBsSubjectToStatusTransferItem.iE_Extension p_iE_Extension := omit
                                                                                                ) := {
                    dRB_ID       := p_dRB_ID,
                    dRBStatusUL  := p_dRBStatusUL,
                    dRBStatusDL  := p_dRBStatusDL,
                    iE_Extension := p_iE_Extension
                } // End of template m_dRBsSubjectToStatusTransferItem

                template (value) DRBsSubjectToStatusTransferItem.iE_Extension m_dRBsSubjectToStatusTransferItem_associatedQosFlowList(
                                                                                                                                    in template (value) AssociatedQosFlowList p_associatedQosFlowList
                                                                                                                                    ) := {
                    {
                        id             := id_OldAssociatedQosFlowList_ULendmarkerexpected,
                        criticality    := ignore,
                        extensionValue := { AssociatedQosFlowList := p_associatedQosFlowList }
                    }
                } // End of template m_dRBsSubjectToStatusTransferItem_associatedQosFlowList

                template (value) DRBStatusDL m_dRBStatusDL_dRBStatusDL12(
                                                                        in template (value) DRBStatusDL12 p_dRBStatusDL12
                                                                        ) := {
                    dRBStatusDL12 := p_dRBStatusDL12
                } // End of template m_dRBStatusDL_dRBStatusDL12

                template (value) DRBStatusDL m_dRBStatusDL_dRBStatusDL18(
                                                                        in template (value) DRBStatusDL18 p_dRBStatusDL18
                                                                        ) := {
                    dRBStatusDL18 := p_dRBStatusDL18
                } // End of template m_dRBStatusDL_dRBStatusDL18

                template (value) DRBStatusDL m_dRBStatusDL_choice_Extensions(
                                                                            in template (value) DRBStatusDL.choice_Extensions p_choice_Extensions
                                                                            ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_dRBStatusDL_choice_Extensions            //  type    NGAP_Containers.NGAP_PROTOCOL_IES   DRBStatusDL_ExtIEs  (?);

                template (omit) DRBStatusDL12 m_dRBStatusDL12(
                                                            in template (value) COUNTValueForPDCP_SN12 p_dL_COUNTValue,
                                                            in template (omit) DRBStatusDL12.iE_Extension p_iE_Extension := omit 
                                                            ) := {
                    dL_COUNTValue := p_dL_COUNTValue,
                    iE_Extension  := p_iE_Extension
                } // End of template m_dRBStatusDL12

                template (omit) DRBStatusDL18 m_dRBStatusDL18(
                                                            in template (value) COUNTValueForPDCP_SN18 p_dL_COUNTValue,
                                                            in template (omit) DRBStatusDL18.iE_Extension p_iE_Extension := omit
                                                            ) := {
                    dL_COUNTValue := p_dL_COUNTValue,
                    iE_Extension  := p_iE_Extension
                } // End of template m_dRBStatusDL18

                template (value) DRBStatusUL m_dRBStatusUL_dRBStatusUL12(
                                                                        in template (value) DRBStatusUL12 p_dRBStatusUL12
                                                                        ) := {
                    dRBStatusUL12 := p_dRBStatusUL12
                } // End of template m_dRBStatusUL_dRBStatusUL12

                template (value) DRBStatusUL m_dRBStatusUL_dRBStatusUL18(
                                                                        in template (value) DRBStatusUL18 p_dRBStatusUL18
                                                                        ) := {
                    dRBStatusUL18 := p_dRBStatusUL18
                } // End of template m_dRBStatusUL_dRBStatusUL18

                template (value) DRBStatusUL m_dRBStatusUL_choice_Extensions(
                                                                            in template (value) DRBStatusUL.choice_Extensions p_choice_Extensions
                                                                            ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_dRBStatusUL_choice_Extensions

                template (omit) DRBStatusUL12 m_dRBStatusUL12(
                                                            in template (value) COUNTValueForPDCP_SN12 p_uL_COUNTValue,
                                                            in template (omit) DRBStatusUL12.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := omit,
                                                            in template (omit) DRBStatusUL12.iE_Extension p_iE_Extension := omit 
                                                            ) := {
                    uL_COUNTValue               := p_uL_COUNTValue,
                    receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                    iE_Extension                := p_iE_Extension
                } // End of template m_dRBStatusUL12

                template (omit) DRBStatusUL18 m_dRBStatusUL18(
                                                            in template (value) COUNTValueForPDCP_SN18 p_uL_COUNTValue,
                                                            in template (omit) DRBStatusUL18.receiveStatusOfUL_PDCP_SDUs p_receiveStatusOfUL_PDCP_SDUs := omit,
                                                            in template (omit) DRBStatusUL18.iE_Extension p_iE_Extension := omit 
                                                            ) := {
                    uL_COUNTValue               := p_uL_COUNTValue,
                    receiveStatusOfUL_PDCP_SDUs := p_receiveStatusOfUL_PDCP_SDUs,
                    iE_Extension                := p_iE_Extension
                } // End of template m_dRBStatusUL18

                template (omit) DRBsToQosFlowsMappingItem m_dRBsToQosFlowsMappingItem(
                                                                                    in template (value) DRB_ID p_dRB_ID,
                                                                                    in template (value) AssociatedQosFlowList p_associatedQosFlowList,
                                                                                    in template (omit) DRBsToQosFlowsMappingItem.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    dRB_ID                := p_dRB_ID,
                    associatedQosFlowList := p_associatedQosFlowList,
                    iE_Extensions         := p_iE_Extensions
                } // End of template m_dRBsToQosFlowsMappingItem

                template (value) DRBsToQosFlowsMappingItem.iE_Extensions m_dRBsToQosFlowsMappingItem_dAPSRequestInfo(
                                                                                                                    in template (value) DAPSRequestInfo p_dAPSRequestInfo
                                                                                                                    ) := {
                    {
                        id             := id_DAPSRequestInfo,
                        criticality    := ignore,
                        extensionValue := { DAPSRequestInfo := p_dAPSRequestInfo }
                    }
                } // End of template m_dRBsToQosFlowsMappingItem_dAPSRequestInfo

                template (omit) Dynamic5QIDescriptor m_dynamic5QIDescriptor(
                                                                            in template (value) PriorityLevelQos p_priorityLevelQos,
                                                                            in template (value) PacketDelayBudget p_packetDelayBudget,
                                                                            in template (value) PacketErrorRate p_packetErrorRate,
                                                                            in template (omit) FiveQI p_fiveQI := omit,
                                                                            in template (omit) DelayCritical p_delayCritical := omit,
                                                                            in template (omit) AveragingWindow p_averagingWindow := omit,
                                                                            in template (omit) MaximumDataBurstVolume p_maximumDataBurstVolume := omit,
                                                                            in template (omit) Dynamic5QIDescriptor.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    priorityLevelQos       := p_priorityLevelQos,
                    packetDelayBudget      := p_packetDelayBudget,
                    packetErrorRate        := p_packetErrorRate,
                    fiveQI                 := p_fiveQI,
                    delayCritical          := p_delayCritical,
                    // The above IE shall be present in case of GBR QoS flow
                    averagingWindow        := p_averagingWindow,
                    // The above IE shall be present in case of GBR QoS flow
                    maximumDataBurstVolume := p_maximumDataBurstVolume,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_dynamic5QIDescriptor

                template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_extendedPacketDelayBudget(
                                                                                                                    in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                                    ) := {
                    {
                        id             := id_ExtendedPacketDelayBudget,
                        criticality    := ignore,
                        extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                    }
                } // End of template m_dynamic5QIDescriptor_extendedPacketDelayBudget

                template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_cNPacketDelayBudgetDL(
                                                                                                                in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                                ) := {
                    {
                        id             := id_CNPacketDelayBudgetDL,
                        criticality    := ignore,
                        extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                    }
                } // End of template m_dynamic5QIDescriptor_cNPacketDelayBudgetDL

                template (value) Dynamic5QIDescriptor.iE_Extensions m_dynamic5QIDescriptor_cNPacketDelayBudgetUL(
                                                                                                                in template (value) ExtendedPacketDelayBudget p_extendedPacketDelayBudget
                                                                                                                ) := {
                    {
                        id             := id_CNPacketDelayBudgetUL,
                        criticality    := ignore,
                        extensionValue := { ExtendedPacketDelayBudget := p_extendedPacketDelayBudget }
                    }
                } // End of template m_dynamic5QIDescriptor_cNPacketDelayBudgetUL

                template (value) EarlyMeasurement m_earlyMeasurement(in EarlyMeasurement p_value := true_) := p_value;

                template (omit) EarlyStatusTransfer_TransparentContainer m_earlyStatusTransfer_TransparentContainer(
                                                                                                                    in template (value) ProcedureStageChoice p_procedureStage,
                                                                                                                    in template (omit) EarlyStatusTransfer_TransparentContainer.iE_Extensions p_iE_Extensions := omit
                                                                                                                    ) := {
                    procedureStage := p_procedureStage,
                    iE_Extensions  := p_iE_Extensions
                } // End of template m_earlyStatusTransfer_TransparentContainer

                template (value) ProcedureStageChoice m_procedureStageChoice_firstDLCount(
                                                                                        in template (value) FirstDLCount p_firstDLCount
                                                                                        ) := {
                    first_dl_count := p_firstDLCount
                } // End of template m_procedureStageChoice_firstDLCount

                template (value) ProcedureStageChoice m_procedureStageChoice_choice_Extensions(
                                                                                            in template (value) ProcedureStageChoice.choice_Extensions p_choice_Extensions
                                                                                            ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_procedureStageChoice_choice_Extensions

                template (omit) FirstDLCount m_firstDLCount(
                                                            in template (value) DRBsSubjectToEarlyStatusTransfer_List p_dRBsSubjectToEarlyStatusTransfer,
                                                            in template (omit) FirstDLCount.iE_Extension p_iE_Extension := omit
                                                            ) := {
                    dRBsSubjectToEarlyStatusTransfer := p_dRBsSubjectToEarlyStatusTransfer,
                    iE_Extension                     := p_iE_Extension
                } // End of template m_firstDLCount

                template (omit) DRBsSubjectToEarlyStatusTransfer_Item m_dRBsSubjectToEarlyStatusTransfer_Item(
                                                                                                            in template (value) DRB_ID p_dRB_ID,
                                                                                                            in template (value) DRBStatusDL p_firstDLCOUNT,
                                                                                                            in template (omit) DRBsSubjectToEarlyStatusTransfer_Item.iE_Extension p_iE_Extension := omit
                                                                                                            ) := {
                    dRB_ID       := p_dRB_ID,
                    firstDLCOUNT := p_firstDLCOUNT,
                    iE_Extension := p_iE_Extension
                } // End of template m_dRBsSubjectToEarlyStatusTransfer_Item

                template (value) EDT_Session m_eDT_Session(in EDT_Session p_value := true_) := p_value;

                template (omit) EmergencyAreaIDBroadcastEUTRA_Item m_emergencyAreaIDBroadcastEUTRA_Item(
                                                                                                        in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                        in template (value) CompletedCellsInEAI_EUTRA p_completedCellsInEAI_EUTRA,
                                                                                                        in template (omit) EmergencyAreaIDBroadcastEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    emergencyAreaID           := p_emergencyAreaID,
                    completedCellsInEAI_EUTRA := p_completedCellsInEAI_EUTRA,
                    iE_Extensions             := p_iE_Extensions
                } // End of template m_emergencyAreaIDBroadcastEUTRA_Item

                template (omit) EmergencyAreaIDBroadcastNR_Item m_emergencyAreaIDBroadcastNR_Item(
                                                                                                in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                in template (value) CompletedCellsInEAI_NR p_completedCellsInEAI_NR,
                                                                                                in template (omit) EmergencyAreaIDBroadcastNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    emergencyAreaID        := p_emergencyAreaID,
                    completedCellsInEAI_NR := p_completedCellsInEAI_NR,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_emergencyAreaIDBroadcastNR_Item

                template (omit) EmergencyAreaIDCancelledEUTRA_Item m_emergencyAreaIDCancelledEUTRA_Item(
                                                                                                        in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                        in template (value) CancelledCellsInEAI_EUTRA p_cancelledCellsInEAI_EUTRA,
                                                                                                        in template (omit) EmergencyAreaIDCancelledEUTRA_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                        ) := {
                    emergencyAreaID           := p_emergencyAreaID,
                    cancelledCellsInEAI_EUTRA := p_cancelledCellsInEAI_EUTRA,
                    iE_Extensions             := p_iE_Extensions
                } // End of template m_emergencyAreaIDCancelledEUTRA_Item

                template (omit) EmergencyAreaIDCancelledNR_Item m_emergencyAreaIDCancelledNR_Item(
                                                                                                in template (value) EmergencyAreaID p_emergencyAreaID,
                                                                                                in template (value) CancelledCellsInEAI_NR p_cancelledCellsInEAI_NR,
                                                                                                in template (omit) EmergencyAreaIDCancelledNR_Item.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    emergencyAreaID        := p_emergencyAreaID,
                    cancelledCellsInEAI_NR := p_cancelledCellsInEAI_NR,
                    iE_Extensions          := p_iE_Extensions
                } // End of template m_emergencyAreaIDCancelledNR_Item

                template (omit) EmergencyFallbackIndicator m_emergencyFallbackIndicator(
                                                                                        in template (value) EmergencyFallbackRequestIndicator p_emergencyFallbackRequestIndicator,
                                                                                        in template (omit) EmergencyServiceTargetCN p_emergencyServiceTargetCN := omit,
                                                                                        in template (omit) EmergencyFallbackIndicator.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    emergencyFallbackRequestIndicator := p_emergencyFallbackRequestIndicator,
                    emergencyServiceTargetCN          := p_emergencyServiceTargetCN,
                    iE_Extensions                     := p_iE_Extensions
                } // End of template m_emergencyFallbackIndicator

                template (value) EmergencyFallbackRequestIndicator m_emergencyFallbackRequestIndicator(in EmergencyFallbackRequestIndicator p_value := emergency_fallback_requested) := p_value;

                template (value) EmergencyServiceTargetCN m_emergencyServiceTargetCN(in EmergencyServiceTargetCN p_value := fiveGC) := p_value;

                template (value) ENB_ID m_eNB_ID_macroENB_ID(
                                                            in template (value) Bit20 p_macroENB_ID
                                                            ) := {
                    macroENB_ID := p_macroENB_ID
                } // End of template m_eNB_ID_macroENB_ID

                template (value) ENB_ID m_eNB_ID_homeENB_ID(
                                                            in template (value) Bit28 p_homeENB_ID
                                                            ) := {
                    homeENB_ID := p_homeENB_ID
                } // End of template m_eNB_ID_homeENB_ID

                template (value) ENB_ID m_eNB_ID_short_macroENB_ID(
                                                                in template (value) Bit18 p_short_macroENB_ID
                                                                ) := {
                    short_macroENB_ID := p_short_macroENB_ID
                } // End of template m_eNB_ID_short_macroENB_ID

                template (value) ENB_ID m_eNB_ID_long_macroENB_ID(
                                                                in template (value) Bit21 p_long_macroENB_ID
                                                                ) := {
                    long_macroENB_ID := p_long_macroENB_ID
                } // End of template m_eNB_ID_long_macroENB_ID

                template (value) ENB_ID m_eNB_ID_choice_Extensions(
                                                                in template (value) ENB_ID.choice_Extensions p_choice_Extensions
                                                                ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_eNB_ID_choice_Extensions

                template (value) Enhanced_CoverageRestriction m_enhanced_CoverageRestriction(in Enhanced_CoverageRestriction p_value := restricted) := p_value;

                template (omit) EndpointIPAddressAndPort m_endpointIPAddressAndPort(
                                                                                    in template (value) TransportLayerAddress p_endpointIPAddress := PX_TRANSPORT_LAYER_ADDRESS,
                                                                                    in template (value) PortNumber p_portNumber,
                                                                                    in template (omit) EndpointIPAddressAndPort.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    endpointIPAddress := p_endpointIPAddress,
                    portNumber        := p_portNumber,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_endpointIPAddressAndPort

                template (value) EndIndication m_endIndication(in EndIndication p_value := no_further_data) := p_value;

                template (omit) EPS_TAI m_ePS_TAI(
                                                in template (value) PLMNIdentity p_pLMNIdentity := PX_PLMN_IDENTITY,
                                                in template (value) EPS_TAC p_ePS_TAC,
                                                in template (omit) EPS_TAI.iE_Extensions p_iE_Extensions := omit
                                                ) := {
                    pLMNIdentity  := p_pLMNIdentity,
                    ePS_TAC       := p_ePS_TAC,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_ePS_TAI

                template (omit) E_RABInformationItem m_e_RABInformationItem(
                                                                            in template (value) E_RAB_ID p_e_RAB_ID,
                                                                            in template (value) DLForwarding p_dLForwarding,
                                                                            in template (omit) E_RABInformationItem.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    e_RAB_ID      := p_e_RAB_ID,
                    dLForwarding  := p_dLForwarding,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_e_RABInformationItem

                template (omit) E_RABInformationItem.iE_Extensions m_e_RABInformationItem_id_SourceTNLAddrInfo(
                                                                                                            in template (value) TransportLayerAddress p_transportLayerAddress := PX_SOURCE_TRANSPORT_LAYER_ADDRESS
                                                                                                            ) := {
                    {
                        id             := id_SourceTNLAddrInfo,
                        criticality    := ignore,
                        extensionValue := { TransportLayerAddress := p_transportLayerAddress }
                    }
                } // End of template m_e_RABInformationItem_id_SourceTNLAddrInfo

                template (omit) E_RABInformationItem.iE_Extensions m_e_RABInformationItem_id_SourceNodeTNLAddrInfo(
                                                                                                                in template (value) TransportLayerAddress p_transportLayerAddress := PX_SOURCE_TRANSPORT_LAYER_ADDRESS
                                                                                                                ) := {
                    {
                        id             := id_SourceNodeTNLAddrInfo,
                        criticality    := ignore,
                        extensionValue := { TransportLayerAddress := p_transportLayerAddress }
                    }
                } // End of template m_e_RABInformationItem_id_SourceNodeTNLAddrInfo

                template (omit) E_RABInformationItem.iE_Extensions m_e_RABInformationItem_full(
                                                                                               in template (value) TransportLayerAddress p_transportLayerAddress_id_SourceTNLAddrInfo := PX_SOURCE_TRANSPORT_LAYER_ADDRESS,
                                                                                               in template (value) TransportLayerAddress p_transportLayerAddress_id_SourceNodeTNLAddrInfo := PX_SOURCE_TRANSPORT_LAYER_ADDRESS
                                                                                               ) := {
                    {
                        id             := id_SourceTNLAddrInfo,
                        criticality    := ignore,
                        extensionValue := { TransportLayerAddress := p_transportLayerAddress_id_SourceTNLAddrInfo }
                    },
                    {
                        id             := id_SourceNodeTNLAddrInfo,
                        criticality    := ignore,
                        extensionValue := { TransportLayerAddress := p_transportLayerAddress_id_SourceNodeTNLAddrInfo }
                    }
                } // End of template m_e_RABInformationItem_full

                template (omit) EUTRA_CGI m_uUTRA_CGI(
                                                    in template (value) PLMNIdentity p_pLMNIdentity := PX_PLMN_IDENTITY,
                                                    in template (value) EUTRACellIdentity p_eUTRACellIdentity := PX_EUTRA_CELL_IDENTITY,
                                                    in template (omit) EUTRA_CGI.iE_Extensions p_iE_Extensions := omit
                                                    ) := {
                    pLMNIdentity      := p_pLMNIdentity,
                    eUTRACellIdentity := p_eUTRACellIdentity,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_uUTRA_CGI

                template (omit) EUTRA_PagingeDRXInformation m_eUTRA_PagingeDRXInformation(
                                                                                        in template (value) EUTRA_Paging_eDRX_Cycle p_eUTRA_paging_eDRX_Cycle,
                                                                                        in template (omit) EUTRA_Paging_Time_Window p_eUTRA_paging_Time_Window := omit,
                                                                                        in template (omit) EUTRA_PagingeDRXInformation.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    eUTRA_paging_eDRX_Cycle  := p_eUTRA_paging_eDRX_Cycle,
                    eUTRA_paging_Time_Window := p_eUTRA_paging_Time_Window,
                    iE_Extensions            := p_iE_Extensions
                } // End of template m_eUTRA_PagingeDRXInformation

                template (value) EUTRA_Paging_eDRX_Cycle m_eUTRA_Paging_eDRX_Cycle(in EUTRA_Paging_eDRX_Cycle p_value := hfhalf) := p_value;

                template (value) EUTRA_Paging_Time_Window m_eUTRA_Paging_Time_Window(in EUTRA_Paging_Time_Window p_value := s1) := p_value;

                template (value) EventType m_eventType(in EventType p_value := direct) := p_value;

                template (omit) ExcessPacketDelayThresholdItem m_excessPacketDelayThresholdItem(
                                                                                                in template (value) FiveQI p_fiveQi,
                                                                                                in template (value) ExcessPacketDelayThresholdValue p_excessPacketDelayThresholdValue,
                                                                                                in template (omit) ExcessPacketDelayThresholdItem.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    fiveQi                          := p_fiveQi,
                    excessPacketDelayThresholdValue := p_excessPacketDelayThresholdValue,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_excessPacketDelayThresholdItem

                template (value) ExcessPacketDelayThresholdValue m_excessPacketDelayThresholdValue(in ExcessPacketDelayThresholdValue p_value := ms0dot25) := p_value;

                template (value) ExpectedHOInterval m_expectedHOInterval(in ExpectedHOInterval p_value := sec15) := p_value;

                template (omit) ExpectedUEActivityBehaviour m_expectedUEActivityBehaviour(
                                                                                        in template (omit) ExpectedActivityPeriod p_expectedActivityPeriod := omit,
                                                                                        in template (omit) ExpectedIdlePeriod p_expectedIdlePeriod := omit,
                                                                                        in template (omit) SourceOfUEActivityBehaviourInformation p_sourceOfUEActivityBehaviourInformation := omit,
                                                                                        in template (omit) ExpectedUEActivityBehaviour.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    expectedActivityPeriod                 := p_expectedActivityPeriod,
                    expectedIdlePeriod                     := p_expectedIdlePeriod,
                    sourceOfUEActivityBehaviourInformation := p_sourceOfUEActivityBehaviourInformation,
                    iE_Extensions                          := p_iE_Extensions
                } // End of template m_expectedUEActivityBehaviour

                template (omit) ExpectedUEBehaviour m_expectedUEBehaviour(
                                                                        in template (omit) ExpectedUEActivityBehaviour p_expectedUEActivityBehaviour := omit,
                                                                        in template (omit) ExpectedHOInterval p_expectedHOInterval := omit,
                                                                        in template (omit) ExpectedUEMobility p_expectedUEMobility := omit,
                                                                        in template (omit) ExpectedUEMovingTrajectory p_expectedUEMovingTrajectory:= omit,
                                                                        in template (omit) ExpectedUEBehaviour.iE_Extensions p_iE_Extensions := omit
                                                                        ) := {
                    expectedUEActivityBehaviour := p_expectedUEActivityBehaviour,
                    expectedHOInterval          := p_expectedHOInterval,
                    expectedUEMobility          := p_expectedUEMobility,
                    expectedUEMovingTrajectory  := p_expectedUEMovingTrajectory,
                    iE_Extensions               := p_iE_Extensions
                } // End of template m_expectedUEBehaviour

                template (value) ExpectedUEMobility m_expectedUEMobility(in ExpectedUEMobility p_value := mobile) := p_value;

                template (omit) ExpectedUEMovingTrajectoryItem m_expectedUEMovingTrajectoryItem(
                                                                                                in template (value) NGRAN_CGI p_nGRAN_CGI,
                                                                                                in template (omit) ExpectedUEMovingTrajectoryItem.timeStayedInCell p_timeStayedInCell := omit,
                                                                                                in template (omit) ExpectedUEMovingTrajectoryItem.iE_Extensions p_iE_Extensions := omit
                                                                                                ) := {
                    nGRAN_CGI        := p_nGRAN_CGI,
                    timeStayedInCell := p_timeStayedInCell,
                    iE_Extensions    := p_iE_Extensions
                } // End of template m_expectedUEMovingTrajectoryItem

                template (omit) Extended_AMFName m_extended_AMFName(
                                                                    in template (omit) AMFNameVisibleString p_aMFNameVisibleString := omit,
                                                                    in template (omit) AMFNameUTF8String p_aMFNameUTF8String := omit,
                                                                    in template (omit) Extended_AMFName.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    aMFNameVisibleString := p_aMFNameVisibleString,
                    aMFNameUTF8String    := p_aMFNameUTF8String,
                    iE_Extensions        := p_iE_Extensions
                } // End of template m_extended_AMFName

                template (omit) Extended_RANNodeName m_extended_RANNodeName(
                                                                            in template (omit) RANNodeNameVisibleString p_rANNodeNameVisibleString := omit,
                                                                            in template (omit) RANNodeNameUTF8String p_rANNodeNameUTF8String := omit,
                                                                            in template (omit) Extended_RANNodeName.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    rANNodeNameVisibleString := p_rANNodeNameVisibleString,
                    rANNodeNameUTF8String    := p_rANNodeNameUTF8String,
                    iE_Extensions            := p_iE_Extensions
                } // End of template m_extended_RANNodeName

                template (omit) ExtendedRATRestrictionInformation m_extendedRATRestrictionInformation(
                                                                                                    in template (value) ExtendedRATRestrictionInformation.primaryRATRestriction p_primaryRATRestriction,
                                                                                                    in template (value) ExtendedRATRestrictionInformation.secondaryRATRestriction p_secondaryRATRestriction,
                                                                                                    in template (omit) ExtendedRATRestrictionInformation.iE_Extensions p_iE_Extensions := omit
                                                                                                    ) := {
                    primaryRATRestriction   := p_primaryRATRestriction,
                    secondaryRATRestriction := p_secondaryRATRestriction,
                    iE_Extensions           := p_iE_Extensions
                } // End of template m_extendedRATRestrictionInformation

                template (value) EventTrigger m_eventTrigger_outOfCoverage(
                                                                        in template (value) EventTrigger.outOfCoverage p_outOfCoverage := true_
                                                                        ) := {
                    outOfCoverage := p_outOfCoverage
                } // End of template m_eventTrigger_outOfCoverage

                template (value) EventTrigger m_eventTrigger_eventL1LoggedMDTConfig(
                                                                                    in template (value) EventL1LoggedMDTConfig p_eventL1LoggedMDTConfig
                                                                                    ) := {
                    eventL1LoggedMDTConfig := p_eventL1LoggedMDTConfig
                } // End of template m_eventTrigger_eventL1LoggedMDTConfig

                template (value) EventTrigger m_eventTrigger_choice_Extensions(
                                                                            in template (value) EventTrigger.choice_Extensions p_choice_Extensions
                                                                            ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_eventTrigger_choice_Extensions

                template (omit) EventL1LoggedMDTConfig m_eventL1LoggedMDTConfig(
                                                                                in template (value) MeasurementThresholdL1LoggedMDT p_l1Threshold,
                                                                                in template (value) Hysteresis p_hysteresis,
                                                                                in template (value) TimeToTrigger p_timeToTrigger,
                                                                                in template (omit) EventL1LoggedMDTConfig.iE_Extensions p_iE_Extensions := omit
                                                                                ) := {
                    l1Threshold   := p_l1Threshold,
                    hysteresis    := p_hysteresis,
                    timeToTrigger := p_timeToTrigger,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_eventL1LoggedMDTConfig

                template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_threshold_RSRP(
                                                                                                                in template (value) Threshold_RSRP p_threshold_RSRP
                                                                                                                ) := {
                    threshold_RSRP := p_threshold_RSRP
                } // End of template m_measurementThresholdL1LoggedMDT_threshold_RSRP

                template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_threshold_RSRQ(
                                                                                                                in template (value) Threshold_RSRQ p_threshold_RSRQ
                                                                                                                ) := {
                    threshold_RSRQ := p_threshold_RSRQ
                } // End of template m_measurementThresholdL1LoggedMDT_threshold_RSRQ

                template (value) MeasurementThresholdL1LoggedMDT m_measurementThresholdL1LoggedMDT_choice_Extensions(
                                                                                                                    in template (value) MeasurementThresholdL1LoggedMDT.choice_Extensions p_choice_Extensions
                                                                                                                    ) := {
                    choice_Extensions := p_choice_Extensions
                } // End of template m_measurementThresholdL1LoggedMDT_choice_Extensions

                template (omit) FailureIndication m_failureIndication(
                                                                    in template (value) UERLFReportContainer p_uERLFReportContainer,
                                                                    in template (omit) FailureIndication.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    uERLFReportContainer := p_uERLFReportContainer,
                    iE_Extensions        := p_iE_Extensions
                } // End of template m_failureIndication

                template (omit) FiveG_ProSeAuthorized m_FiveG_ProSeAuthorized(
                                                                            in template (omit) FiveGProSeDirectDiscovery p_fiveGProSeDirectDiscovery := omit,
                                                                            in template (omit) FiveGProSeDirectCommunication p_fiveGProSeDirectCommunication := omit,
                                                                            in template (omit) FiveGProSeLayer2UEtoNetworkRelay p_fiveGProSeLayer2UEtoNetworkRelay := omit,
                                                                            in template (omit) FiveGProSeLayer3UEtoNetworkRelay p_fiveGProSeLayer3UEtoNetworkRelay := omit,
                                                                            in template (omit) FiveGProSeLayer2RemoteUE p_fiveGProSeLayer2RemoteUE := omit,
                                                                            in template (omit) FiveG_ProSeAuthorized.iE_Extensions p_iE_Extensions := omit
                                                                            ) := {
                    fiveGProSeDirectDiscovery        := p_fiveGProSeDirectDiscovery,
                    fiveGProSeDirectCommunication    := p_fiveGProSeDirectCommunication,
                    fiveGProSeLayer2UEtoNetworkRelay := p_fiveGProSeLayer2UEtoNetworkRelay,
                    fiveGProSeLayer3UEtoNetworkRelay := p_fiveGProSeLayer3UEtoNetworkRelay,
                    fiveGProSeLayer2RemoteUE         := p_fiveGProSeLayer2RemoteUE,
                    iE_Extensions                    := p_iE_Extensions
                } // End of template m_FiveG_ProSeAuthorized

                template (value) FiveGProSeDirectDiscovery m_fiveGProSeDirectDiscovery(in FiveGProSeDirectDiscovery p_value := authorized) := p_value;

                template (value) FiveGProSeDirectCommunication m_fiveGProSeDirectCommunication(in FiveGProSeDirectCommunication p_value := authorized) := p_value;

                template (value) FiveGProSeLayer2UEtoNetworkRelay m_fiveGProSeLayer2UEtoNetworkRelay(in FiveGProSeLayer2UEtoNetworkRelay p_value := authorized) := p_value;

                template (value) FiveGProSeLayer3UEtoNetworkRelay m_fiveGProSeLayer3UEtoNetworkRelay(in FiveGProSeLayer3UEtoNetworkRelay p_value := authorized) := p_value;

                template (value) FiveGProSeLayer2RemoteUE m_fiveGProSeLayer2RemoteUE(in FiveGProSeLayer2RemoteUE p_value := authorized) := p_value;

                template (omit) FiveG_ProSePC5QoSParameters m_fiveG_ProSePC5QoSParameters(
                                                                                        in template (value) FiveGProSePC5QoSFlowList p_fiveGProSepc5QoSFlowList,
                                                                                        in template (omit) BitRate p_fiveGProSepc5LinkAggregateBitRates := omit,
                                                                                        in template (omit) FiveG_ProSePC5QoSParameters.iE_Extensions p_iE_Extensions := omit
                                                                                        ) := {
                    fiveGProSepc5QoSFlowList           := p_fiveGProSepc5QoSFlowList,
                    fiveGProSepc5LinkAggregateBitRates := p_fiveGProSepc5LinkAggregateBitRates,
                    iE_Extensions                      := p_iE_Extensions
                } // End of template m_fiveG_ProSePC5QoSParameters

                template (omit) FiveGProSePC5QoSFlowItem m_fiveGProSePC5QoSFlowItem(
                                                                                    in template (value) FiveQI p_fiveGproSepQI,
                                                                                    in template (omit) FiveGProSePC5FlowBitRates p_fiveGproSepc5FlowBitRates := omit,
                                                                                    in template (omit) Range p_fiveGproSerange := omit,
                                                                                    in template (omit) FiveGProSePC5QoSFlowItem.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    fiveGproSepQI             := p_fiveGproSepQI,
                    fiveGproSepc5FlowBitRates := p_fiveGproSepc5FlowBitRates,
                    fiveGproSerange           := p_fiveGproSerange,
                    iE_Extensions             := p_iE_Extensions
                } // End of template m_fiveGProSePC5QoSFlowItem

                template (omit) FiveGProSePC5FlowBitRates m_fiveGProSePC5FlowBitRates(
                                                                                    in template (value) BitRate p_fiveGproSeguaranteedFlowBitRate,
                                                                                    in template (value) BitRate p_fiveGproSemaximumFlowBitRate,
                                                                                    in template (omit) FiveGProSePC5FlowBitRates.iE_Extensions p_iE_Extensions := omit
                                                                                    ) := {
                    fiveGproSeguaranteedFlowBitRate := p_fiveGproSeguaranteedFlowBitRate,
                    fiveGproSemaximumFlowBitRate    := p_fiveGproSemaximumFlowBitRate,
                    iE_Extensions                   := p_iE_Extensions
                } // End of template m_fiveGProSePC5FlowBitRates

                template (omit) FiveG_S_TMSI m_fiveG_S_TMSI(
                                                            in template (value) AMFSetID p_aMFSetID := PX_AMF_SET_ID,
                                                            in template (value) AMFPointer p_aMFPointer := PX_AMF_POINTER,
                                                            in template (value) FiveG_TMSI p_fiveG_TMSI,
                                                            in template (omit) FiveG_S_TMSI.iE_Extensions p_iE_Extensions := omit
                                                            ) := {
                    aMFSetID      := p_aMFSetID,
                    aMFPointer    := p_aMFPointer,
                    fiveG_TMSI    := p_fiveG_TMSI,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_fiveG_S_TMSI

                template (omit) ForbiddenAreaInformation_Item m_forbiddenAreaInformation_Item(
                                                                                            in template (value) PLMNIdentity p_pLMNIdentity := PX_PLMN_IDENTITY,
                                                                                            in template (value) ForbiddenTACs p_forbiddenTACs,
                                                                                            in template (omit) ForbiddenAreaInformation_Item.iE_Extensions p_iE_Extensions := omit
                                                                                            ) := {
                    pLMNIdentity  := p_pLMNIdentity,
                    forbiddenTACs := p_forbiddenTACs,
                    iE_Extensions := p_iE_Extensions
                } // End of template m_forbiddenAreaInformation_Item

                template (omit) FromEUTRANtoNGRAN m_fromEUTRANtoNGRAN(
                                                                    in template (value) IntersystemSONeNBID p_sourceeNBID,
                                                                    in template (value) IntersystemSONNGRANnodeID p_targetNGRANnodeID,
                                                                    in template (omit) FromEUTRANtoNGRAN.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    sourceeNBID       := p_sourceeNBID,
                    targetNGRANnodeID := p_targetNGRANnodeID,
                    iE_Extensions     := p_iE_Extensions
                } // End of template m_fromEUTRANtoNGRAN

                template (omit) FromNGRANtoEUTRAN m_fromNGRANtoEUTRAN(
                                                                    in template (value) IntersystemSONNGRANnodeID p_sourceNGRANnodeID,
                                                                    in template (value) IntersystemSONeNBID p_targeteNBID,
                                                                    in template (omit) FromNGRANtoEUTRAN.iE_Extensions p_iE_Extensions := omit
                                                                    ) := {
                    sourceNGRANnodeID := p_sourceNGRANnodeID,
                    targeteNBID       := p_targeteNBID,