usebridge-api 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of usebridge-api might be problematic. Click here for more details.
- rtaylor_205/__init__.py +1606 -0
- rtaylor_205/_default_clients.py +32 -0
- rtaylor_205/billing/__init__.py +135 -0
- rtaylor_205/billing/client.py +101 -0
- rtaylor_205/billing/estimate_charges/__init__.py +82 -0
- rtaylor_205/billing/estimate_charges/client.py +427 -0
- rtaylor_205/billing/estimate_charges/raw_client.py +471 -0
- rtaylor_205/billing/estimate_charges/types/__init__.py +80 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_authorize_stripe_v_1_response.py +40 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_authorize_stripe_v_1_response_status.py +25 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_authorize_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_cancel_stripe_v_1_response.py +40 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_cancel_stripe_v_1_response_status.py +25 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_cancel_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_capture_stripe_v_1_response.py +40 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_capture_stripe_v_1_response_status.py +25 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_capture_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_create_v_1_request.py +27 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_create_v_1_response.py +38 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_create_v_1_response_status.py +25 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_refund_stripe_v_1_response.py +40 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_refund_stripe_v_1_response_status.py +25 -0
- rtaylor_205/billing/estimate_charges/types/estimate_charge_refund_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/fees/__init__.py +76 -0
- rtaylor_205/billing/fees/client.py +302 -0
- rtaylor_205/billing/fees/raw_client.py +322 -0
- rtaylor_205/billing/fees/types/__init__.py +74 -0
- rtaylor_205/billing/fees/types/fee_capture_stripe_v_1_response.py +39 -0
- rtaylor_205/billing/fees/types/fee_capture_stripe_v_1_response_status.py +7 -0
- rtaylor_205/billing/fees/types/fee_capture_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/fees/types/fee_capture_stripe_v_1_response_type.py +5 -0
- rtaylor_205/billing/fees/types/fee_create_v_1_request.py +30 -0
- rtaylor_205/billing/fees/types/fee_create_v_1_request_type.py +5 -0
- rtaylor_205/billing/fees/types/fee_create_v_1_response.py +37 -0
- rtaylor_205/billing/fees/types/fee_create_v_1_response_status.py +7 -0
- rtaylor_205/billing/fees/types/fee_create_v_1_response_type.py +5 -0
- rtaylor_205/billing/fees/types/fee_refund_stripe_v_1_response.py +39 -0
- rtaylor_205/billing/fees/types/fee_refund_stripe_v_1_response_status.py +7 -0
- rtaylor_205/billing/fees/types/fee_refund_stripe_v_1_response_stripe.py +22 -0
- rtaylor_205/billing/fees/types/fee_refund_stripe_v_1_response_type.py +5 -0
- rtaylor_205/billing/raw_client.py +13 -0
- rtaylor_205/billing/setup_intent/__init__.py +37 -0
- rtaylor_205/billing/setup_intent/client.py +115 -0
- rtaylor_205/billing/setup_intent/raw_client.py +116 -0
- rtaylor_205/billing/setup_intent/types/__init__.py +38 -0
- rtaylor_205/billing/setup_intent/types/setup_intent_create_stripe_v_1_request.py +21 -0
- rtaylor_205/billing/setup_intent/types/setup_intent_create_stripe_v_1_response.py +24 -0
- rtaylor_205/client.py +526 -0
- rtaylor_205/consent/__init__.py +64 -0
- rtaylor_205/consent/client.py +241 -0
- rtaylor_205/consent/raw_client.py +250 -0
- rtaylor_205/consent/types/__init__.py +62 -0
- rtaylor_205/consent/types/patient_consent_create_v_1_request.py +31 -0
- rtaylor_205/consent/types/patient_consent_create_v_1_request_type.py +7 -0
- rtaylor_205/consent/types/patient_consent_create_v_1_response.py +34 -0
- rtaylor_205/consent/types/patient_consent_create_v_1_response_status.py +5 -0
- rtaylor_205/consent/types/patient_consent_create_v_1_response_type.py +7 -0
- rtaylor_205/consent/types/patient_consents_list_v_1_response.py +28 -0
- rtaylor_205/consent/types/patient_consents_list_v_1_response_item.py +34 -0
- rtaylor_205/consent/types/patient_consents_list_v_1_response_item_status.py +5 -0
- rtaylor_205/consent/types/patient_consents_list_v_1_response_item_type.py +7 -0
- rtaylor_205/consent_versions/__init__.py +46 -0
- rtaylor_205/consent_versions/client.py +116 -0
- rtaylor_205/consent_versions/raw_client.py +121 -0
- rtaylor_205/consent_versions/types/__init__.py +44 -0
- rtaylor_205/consent_versions/types/consent_versions_list_v_1_response.py +28 -0
- rtaylor_205/consent_versions/types/consent_versions_list_v_1_response_item.py +21 -0
- rtaylor_205/consent_versions/types/consent_versions_list_v_1_response_item_type.py +7 -0
- rtaylor_205/core/__init__.py +127 -0
- rtaylor_205/core/api_error.py +23 -0
- rtaylor_205/core/client_wrapper.py +123 -0
- rtaylor_205/core/datetime_utils.py +70 -0
- rtaylor_205/core/file.py +67 -0
- rtaylor_205/core/force_multipart.py +18 -0
- rtaylor_205/core/http_client.py +839 -0
- rtaylor_205/core/http_response.py +59 -0
- rtaylor_205/core/http_sse/__init__.py +42 -0
- rtaylor_205/core/http_sse/_api.py +148 -0
- rtaylor_205/core/http_sse/_decoders.py +61 -0
- rtaylor_205/core/http_sse/_exceptions.py +7 -0
- rtaylor_205/core/http_sse/_models.py +17 -0
- rtaylor_205/core/jsonable_encoder.py +120 -0
- rtaylor_205/core/logging.py +107 -0
- rtaylor_205/core/parse_error.py +36 -0
- rtaylor_205/core/pydantic_utilities.py +508 -0
- rtaylor_205/core/query_encoder.py +58 -0
- rtaylor_205/core/remove_none_from_dict.py +11 -0
- rtaylor_205/core/request_options.py +35 -0
- rtaylor_205/core/serialization.py +347 -0
- rtaylor_205/environment.py +8 -0
- rtaylor_205/events/__init__.py +55 -0
- rtaylor_205/events/client.py +226 -0
- rtaylor_205/events/raw_client.py +240 -0
- rtaylor_205/events/types/__init__.py +53 -0
- rtaylor_205/events/types/event_get_v_1_response.py +34 -0
- rtaylor_205/events/types/event_get_v_1_response_event_type.py +29 -0
- rtaylor_205/events/types/events_list_v_1_order_created_at.py +5 -0
- rtaylor_205/events/types/events_list_v_1_response.py +28 -0
- rtaylor_205/events/types/events_list_v_1_response_item.py +34 -0
- rtaylor_205/events/types/events_list_v_1_response_item_event_type.py +29 -0
- rtaylor_205/notes/__init__.py +319 -0
- rtaylor_205/notes/client.py +471 -0
- rtaylor_205/notes/raw_client.py +482 -0
- rtaylor_205/notes/types/__init__.py +401 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_order_created_at.py +5 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response.py +28 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item.py +32 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data.py +133 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_signature.py +24 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_signature_field_provider.py +40 -0
- rtaylor_205/notes/types/note_addenda_list_v_1_response_item_signature_field_provider_field_type.py +7 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request.py +27 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data.py +133 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_request_signature.py +23 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response.py +32 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data.py +133 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_signature.py +24 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_signature_field_provider.py +40 -0
- rtaylor_205/notes/types/note_addendum_create_v_1_response_signature_field_provider_field_type.py +7 -0
- rtaylor_205/notes/types/note_create_v_1_request.py +28 -0
- rtaylor_205/notes/types/note_create_v_1_request_data.py +129 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_request_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_create_v_1_request_signature.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_response.py +35 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data.py +137 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_signature.py +24 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_signature_field_provider.py +40 -0
- rtaylor_205/notes/types/note_create_v_1_response_addenda_element_signature_field_provider_field_type.py +7 -0
- rtaylor_205/notes/types/note_create_v_1_response_addendum.py +32 -0
- rtaylor_205/notes/types/note_create_v_1_response_data.py +129 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_create_v_1_response_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_create_v_1_response_signature.py +22 -0
- rtaylor_205/notes/types/note_create_v_1_response_signature_field_provider.py +40 -0
- rtaylor_205/notes/types/note_create_v_1_response_signature_field_provider_field_type.py +7 -0
- rtaylor_205/notes/types/note_get_v_1_response.py +35 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data.py +135 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_signature.py +24 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_signature_field_provider.py +40 -0
- rtaylor_205/notes/types/note_get_v_1_response_addenda_element_signature_field_provider_field_type.py +7 -0
- rtaylor_205/notes/types/note_get_v_1_response_addendum.py +32 -0
- rtaylor_205/notes/types/note_get_v_1_response_data.py +129 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_allergy.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_icd_10.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_medication.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_monitoring_datum.py +23 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_scored_assessment.py +23 -0
- rtaylor_205/notes/types/note_get_v_1_response_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/notes/types/note_get_v_1_response_signature.py +22 -0
- rtaylor_205/notes/types/note_get_v_1_response_signature_field_provider.py +38 -0
- rtaylor_205/notes/types/note_get_v_1_response_signature_field_provider_field_type.py +7 -0
- rtaylor_205/patient_token/__init__.py +37 -0
- rtaylor_205/patient_token/client.py +109 -0
- rtaylor_205/patient_token/raw_client.py +112 -0
- rtaylor_205/patient_token/types/__init__.py +38 -0
- rtaylor_205/patient_token/types/patient_token_create_v_1_request.py +21 -0
- rtaylor_205/patient_token/types/patient_token_create_v_1_response.py +26 -0
- rtaylor_205/patients/__init__.py +201 -0
- rtaylor_205/patients/client.py +442 -0
- rtaylor_205/patients/raw_client.py +523 -0
- rtaylor_205/patients/types/__init__.py +128 -0
- rtaylor_205/patients/types/patient_stream_v_1_response.py +50 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_account.py +21 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_account_field_status.py +5 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_address.py +38 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_address_field_country.py +5 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_address_field_state.py +60 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_coverage.py +23 -0
- rtaylor_205/patients/types/patient_stream_v_1_response_metadata.py +23 -0
- rtaylor_205/patients/types/patient_update_v_1_request.py +51 -0
- rtaylor_205/patients/types/patient_update_v_1_request_address.py +34 -0
- rtaylor_205/patients/types/patient_update_v_1_request_address_field_country.py +5 -0
- rtaylor_205/patients/types/patient_update_v_1_request_address_field_state.py +60 -0
- rtaylor_205/patients/types/patient_update_v_1_request_coverage.py +30 -0
- rtaylor_205/patients/types/patient_update_v_1_request_metadata.py +23 -0
- rtaylor_205/patients/types/patient_update_v_1_response.py +50 -0
- rtaylor_205/patients/types/patient_update_v_1_response_account.py +21 -0
- rtaylor_205/patients/types/patient_update_v_1_response_account_field_status.py +5 -0
- rtaylor_205/patients/types/patient_update_v_1_response_address.py +38 -0
- rtaylor_205/patients/types/patient_update_v_1_response_address_field_country.py +5 -0
- rtaylor_205/patients/types/patient_update_v_1_response_address_field_state.py +60 -0
- rtaylor_205/patients/types/patient_update_v_1_response_coverage.py +23 -0
- rtaylor_205/patients/types/patient_update_v_1_response_metadata.py +23 -0
- rtaylor_205/patients/types/patients_list_v_1_response.py +28 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item.py +50 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_account.py +21 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_account_field_status.py +5 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_address.py +38 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_address_field_country.py +5 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_address_field_state.py +60 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_coverage.py +23 -0
- rtaylor_205/patients/types/patients_list_v_1_response_item_metadata.py +23 -0
- rtaylor_205/patients/v_2/__init__.py +103 -0
- rtaylor_205/patients/v_2/client.py +275 -0
- rtaylor_205/patients/v_2/raw_client.py +287 -0
- rtaylor_205/patients/v_2/types/__init__.py +101 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request.py +44 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request_address.py +34 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request_address_field_country.py +5 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request_address_field_state.py +60 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request_coverage.py +30 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_request_metadata.py +23 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response.py +50 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_account.py +21 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_account_field_status.py +5 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_address.py +38 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_address_field_country.py +5 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_address_field_state.py +60 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_coverage.py +23 -0
- rtaylor_205/patients/v_2/types/patient_create_v_2_response_metadata.py +23 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response.py +50 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_account.py +21 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_account_field_status.py +5 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_address.py +38 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_address_field_country.py +5 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_address_field_state.py +60 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_coverage.py +23 -0
- rtaylor_205/patients/v_2/types/patient_get_v_2_response_metadata.py +23 -0
- rtaylor_205/payer_groups/__init__.py +78 -0
- rtaylor_205/payer_groups/client.py +208 -0
- rtaylor_205/payer_groups/health/__init__.py +52 -0
- rtaylor_205/payer_groups/health/client.py +137 -0
- rtaylor_205/payer_groups/health/raw_client.py +139 -0
- rtaylor_205/payer_groups/health/types/__init__.py +50 -0
- rtaylor_205/payer_groups/health/types/health_events_list_v_1_order_event_at.py +5 -0
- rtaylor_205/payer_groups/health/types/health_events_list_v_1_response.py +28 -0
- rtaylor_205/payer_groups/health/types/health_events_list_v_1_response_item.py +31 -0
- rtaylor_205/payer_groups/health/types/health_events_list_v_1_response_item_previous_status.py +7 -0
- rtaylor_205/payer_groups/health/types/health_events_list_v_1_response_item_status.py +5 -0
- rtaylor_205/payer_groups/raw_client.py +203 -0
- rtaylor_205/payer_groups/types/__init__.py +56 -0
- rtaylor_205/payer_groups/types/payer_group_get_v_1_response.py +24 -0
- rtaylor_205/payer_groups/types/payer_group_get_v_1_response_health.py +26 -0
- rtaylor_205/payer_groups/types/payer_group_get_v_1_response_health_field_status.py +5 -0
- rtaylor_205/payer_groups/types/payer_groups_list_v_1_response.py +28 -0
- rtaylor_205/payer_groups/types/payer_groups_list_v_1_response_item.py +24 -0
- rtaylor_205/payer_groups/types/payer_groups_list_v_1_response_item_health.py +26 -0
- rtaylor_205/payer_groups/types/payer_groups_list_v_1_response_item_health_field_status.py +7 -0
- rtaylor_205/payers/__init__.py +34 -0
- rtaylor_205/payers/client.py +104 -0
- rtaylor_205/payers/raw_client.py +102 -0
- rtaylor_205/payers/types/__init__.py +34 -0
- rtaylor_205/payers/types/payer_get_v_1_response.py +25 -0
- rtaylor_205/payments/__init__.py +70 -0
- rtaylor_205/payments/client.py +382 -0
- rtaylor_205/payments/raw_client.py +395 -0
- rtaylor_205/payments/types/__init__.py +68 -0
- rtaylor_205/payments/types/payment_create_v_1_request.py +48 -0
- rtaylor_205/payments/types/payment_create_v_1_request_type.py +5 -0
- rtaylor_205/payments/types/payment_create_v_1_response.py +37 -0
- rtaylor_205/payments/types/payment_create_v_1_response_type.py +5 -0
- rtaylor_205/payments/types/payment_get_v_1_response.py +37 -0
- rtaylor_205/payments/types/payment_get_v_1_response_type.py +5 -0
- rtaylor_205/payments/types/payments_list_v_1_filter_type.py +5 -0
- rtaylor_205/payments/types/payments_list_v_1_order_paid_at.py +5 -0
- rtaylor_205/payments/types/payments_list_v_1_response.py +28 -0
- rtaylor_205/payments/types/payments_list_v_1_response_item.py +37 -0
- rtaylor_205/payments/types/payments_list_v_1_response_item_type.py +5 -0
- rtaylor_205/policies/__init__.py +132 -0
- rtaylor_205/policies/client.py +263 -0
- rtaylor_205/policies/raw_client.py +308 -0
- rtaylor_205/policies/types/__init__.py +89 -0
- rtaylor_205/policies/types/policy_get_v_1_response.py +58 -0
- rtaylor_205/policies/types/policy_get_v_1_response_error.py +20 -0
- rtaylor_205/policies/types/policy_get_v_1_response_latest.py +34 -0
- rtaylor_205/policies/types/policy_get_v_1_response_payer.py +25 -0
- rtaylor_205/policies/types/policy_get_v_1_response_person.py +29 -0
- rtaylor_205/policies/types/policy_get_v_1_response_policy_holder.py +29 -0
- rtaylor_205/policies/types/policy_get_v_1_response_relationship.py +5 -0
- rtaylor_205/policies/types/policy_get_v_1_response_state.py +60 -0
- rtaylor_205/policies/types/policy_get_v_1_response_status.py +7 -0
- rtaylor_205/policies/types/policy_stream_v_1_response.py +58 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_error.py +20 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_latest.py +34 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_payer.py +25 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_person.py +29 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_policy_holder.py +29 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_relationship.py +7 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_state.py +60 -0
- rtaylor_205/policies/types/policy_stream_v_1_response_status.py +7 -0
- rtaylor_205/policies/v_2/__init__.py +73 -0
- rtaylor_205/policies/v_2/client.py +195 -0
- rtaylor_205/policies/v_2/raw_client.py +176 -0
- rtaylor_205/policies/v_2/types/__init__.py +71 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_request.py +43 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_request_person.py +31 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_request_state.py +60 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response.py +63 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_error.py +20 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_latest.py +34 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_payer.py +25 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_person.py +29 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_policy_holder.py +29 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_relationship.py +7 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_state.py +60 -0
- rtaylor_205/policies/v_2/types/policy_create_v_2_response_status.py +7 -0
- rtaylor_205/provider_eligibility/__init__.py +91 -0
- rtaylor_205/provider_eligibility/client.py +239 -0
- rtaylor_205/provider_eligibility/raw_client.py +231 -0
- rtaylor_205/provider_eligibility/types/__init__.py +105 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_request.py +32 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_request_location.py +42 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_request_location_field_country.py +5 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_request_location_field_state.py +60 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response.py +44 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_location.py +42 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_location_field_country.py +5 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_location_field_state.py +60 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_provider.py +40 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_providers_element_type.py +7 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_create_v_1_response_status.py +5 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response.py +44 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_location.py +42 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_location_field_country.py +5 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_location_field_state.py +60 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_provider.py +40 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_providers_element_type.py +7 -0
- rtaylor_205/provider_eligibility/types/provider_eligibility_get_v_1_response_status.py +5 -0
- rtaylor_205/providers/__init__.py +114 -0
- rtaylor_205/providers/client.py +409 -0
- rtaylor_205/providers/enrollment/__init__.py +64 -0
- rtaylor_205/providers/enrollment/client.py +114 -0
- rtaylor_205/providers/enrollment/raw_client.py +110 -0
- rtaylor_205/providers/enrollment/types/__init__.py +78 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response.py +33 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups.py +26 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states.py +39 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_license_status.py +7 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_lines_of_business.py +38 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_lines_of_business_field_commercial.py +46 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_lines_of_business_field_commercial_field_status.py +7 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_lines_of_business_field_medicare_advantage.py +48 -0
- rtaylor_205/providers/enrollment/types/provider_enrollment_status_get_v_1_response_payer_groups_value_states_value_lines_of_business_field_medicare_advantage_field_status.py +7 -0
- rtaylor_205/providers/raw_client.py +416 -0
- rtaylor_205/providers/types/__init__.py +82 -0
- rtaylor_205/providers/types/provider_get_v_1_response.py +38 -0
- rtaylor_205/providers/types/provider_get_v_1_response_type.py +7 -0
- rtaylor_205/providers/types/provider_post_v_1_request.py +20 -0
- rtaylor_205/providers/types/provider_post_v_1_request_provider.py +32 -0
- rtaylor_205/providers/types/provider_post_v_1_response.py +22 -0
- rtaylor_205/providers/types/provider_post_v_1_response_failed.py +40 -0
- rtaylor_205/providers/types/provider_post_v_1_response_failed_element_provider_type.py +7 -0
- rtaylor_205/providers/types/provider_post_v_1_response_successful.py +38 -0
- rtaylor_205/providers/types/provider_post_v_1_response_successful_element_provider_type.py +7 -0
- rtaylor_205/providers/types/provider_update_v_1_request.py +23 -0
- rtaylor_205/providers/types/provider_update_v_1_response.py +38 -0
- rtaylor_205/providers/types/provider_update_v_1_response_type.py +7 -0
- rtaylor_205/providers/types/providers_list_v_1_response.py +28 -0
- rtaylor_205/providers/types/providers_list_v_1_response_item.py +38 -0
- rtaylor_205/providers/types/providers_list_v_1_response_item_type.py +7 -0
- rtaylor_205/py.typed +0 -0
- rtaylor_205/search/__init__.py +38 -0
- rtaylor_205/search/client.py +117 -0
- rtaylor_205/search/raw_client.py +120 -0
- rtaylor_205/search/types/__init__.py +40 -0
- rtaylor_205/search/types/search_payer_v_1_request.py +23 -0
- rtaylor_205/search/types/search_payer_v_1_response.py +25 -0
- rtaylor_205/search/types/search_payer_v_1_response_item.py +25 -0
- rtaylor_205/service_eligibility/__init__.py +246 -0
- rtaylor_205/service_eligibility/client.py +203 -0
- rtaylor_205/service_eligibility/raw_client.py +244 -0
- rtaylor_205/service_eligibility/types/__init__.py +217 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response.py +79 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_clinical_info.py +22 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_condition.py +24 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_limit_field_units.py +32 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_patient_responsibility.py +82 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_conditional_patient_responsibility.py +39 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_message.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_patient_responsibility.py +80 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_policy_id.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_provider.py +40 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_providers_element_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_state.py +60 -0
- rtaylor_205/service_eligibility/types/service_eligibility_get_v_1_response_status.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response.py +79 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_clinical_info.py +22 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_condition.py +26 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_limit_field_units.py +32 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_conditional_patient_responsibility.py +39 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_message.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_patient_responsibility.py +80 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_policy_id.py +3 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_provider.py +40 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_providers_element_type.py +7 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_state.py +60 -0
- rtaylor_205/service_eligibility/types/service_eligibility_stream_v_1_response_status.py +7 -0
- rtaylor_205/service_eligibility/v_2/__init__.py +115 -0
- rtaylor_205/service_eligibility/v_2/client.py +178 -0
- rtaylor_205/service_eligibility/v_2/raw_client.py +169 -0
- rtaylor_205/service_eligibility/v_2/types/__init__.py +143 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_request.py +50 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_request_clinical_info.py +22 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_request_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_request_policy_id.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_request_state.py +60 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response.py +84 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_clinical_info.py +22 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_condition.py +26 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_limit_field_units.py +32 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_conditional_patient_responsibility.py +39 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_message.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_patient_responsibility.py +80 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_policy_id.py +3 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_provider.py +40 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_providers_element_type.py +7 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_state.py +60 -0
- rtaylor_205/service_eligibility/v_2/types/service_eligibility_create_v_2_response_status.py +7 -0
- rtaylor_205/service_types/__init__.py +70 -0
- rtaylor_205/service_types/client.py +181 -0
- rtaylor_205/service_types/raw_client.py +201 -0
- rtaylor_205/service_types/types/__init__.py +70 -0
- rtaylor_205/service_types/types/service_type_get_v_1_response.py +57 -0
- rtaylor_205/service_types/types/service_type_get_v_1_response_note_field.py +3 -0
- rtaylor_205/service_types/types/service_type_get_v_1_response_place_of_service.py +7 -0
- rtaylor_205/service_types/types/service_type_get_v_1_response_provider_type.py +5 -0
- rtaylor_205/service_types/types/service_type_get_v_1_response_provider_types_element.py +7 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response.py +28 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response_item.py +57 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response_item_note_field.py +3 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response_item_place_of_service.py +7 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response_item_provider_type.py +7 -0
- rtaylor_205/service_types/types/service_types_list_v_1_response_item_provider_types_element.py +7 -0
- rtaylor_205/services/__init__.py +1186 -0
- rtaylor_205/services/client.py +796 -0
- rtaylor_205/services/payments/__init__.py +46 -0
- rtaylor_205/services/payments/client.py +126 -0
- rtaylor_205/services/payments/raw_client.py +128 -0
- rtaylor_205/services/payments/types/__init__.py +44 -0
- rtaylor_205/services/payments/types/service_payments_list_v_1_response.py +28 -0
- rtaylor_205/services/payments/types/service_payments_list_v_1_response_item.py +37 -0
- rtaylor_205/services/payments/types/service_payments_list_v_1_response_item_type.py +5 -0
- rtaylor_205/services/raw_client.py +859 -0
- rtaylor_205/services/types/__init__.py +947 -0
- rtaylor_205/services/types/service_create_v_1_request.py +63 -0
- rtaylor_205/services/types/service_create_v_1_request_location.py +38 -0
- rtaylor_205/services/types/service_create_v_1_request_location_field_country.py +5 -0
- rtaylor_205/services/types/service_create_v_1_request_location_field_state.py +60 -0
- rtaylor_205/services/types/service_create_v_1_request_metadata.py +23 -0
- rtaylor_205/services/types/service_create_v_1_request_responsible_party.py +5 -0
- rtaylor_205/services/types/service_create_v_1_request_service_eligibility.py +33 -0
- rtaylor_205/services/types/service_create_v_1_request_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/types/service_create_v_1_request_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response.py +102 -0
- rtaylor_205/services/types/service_create_v_1_response_cancellation_reason.py +5 -0
- rtaylor_205/services/types/service_create_v_1_response_claim_status.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_coverage_status.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_location.py +38 -0
- rtaylor_205/services/types/service_create_v_1_response_location_field_country.py +5 -0
- rtaylor_205/services/types/service_create_v_1_response_location_field_state.py +60 -0
- rtaylor_205/services/types/service_create_v_1_response_metadata.py +23 -0
- rtaylor_205/services/types/service_create_v_1_response_patient_responsibility.py +38 -0
- rtaylor_205/services/types/service_create_v_1_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/types/service_create_v_1_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_payment.py +37 -0
- rtaylor_205/services/types/service_create_v_1_response_payments_element_type.py +5 -0
- rtaylor_205/services/types/service_create_v_1_response_provider.py +38 -0
- rtaylor_205/services/types/service_create_v_1_response_provider_field_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_responsible_party.py +5 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility.py +91 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/types/service_create_v_1_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_type.py +61 -0
- rtaylor_205/services/types/service_create_v_1_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/types/service_create_v_1_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_status.py +7 -0
- rtaylor_205/services/types/service_create_v_1_response_task.py +21 -0
- rtaylor_205/services/types/service_create_v_1_response_tasks_element_type.py +35 -0
- rtaylor_205/services/types/service_get_v_1_response.py +102 -0
- rtaylor_205/services/types/service_get_v_1_response_cancellation_reason.py +5 -0
- rtaylor_205/services/types/service_get_v_1_response_claim_status.py +5 -0
- rtaylor_205/services/types/service_get_v_1_response_coverage_status.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_location.py +38 -0
- rtaylor_205/services/types/service_get_v_1_response_location_field_country.py +5 -0
- rtaylor_205/services/types/service_get_v_1_response_location_field_state.py +60 -0
- rtaylor_205/services/types/service_get_v_1_response_metadata.py +23 -0
- rtaylor_205/services/types/service_get_v_1_response_patient_responsibility.py +38 -0
- rtaylor_205/services/types/service_get_v_1_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/types/service_get_v_1_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_payment.py +37 -0
- rtaylor_205/services/types/service_get_v_1_response_payments_element_type.py +5 -0
- rtaylor_205/services/types/service_get_v_1_response_provider.py +38 -0
- rtaylor_205/services/types/service_get_v_1_response_provider_field_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_responsible_party.py +5 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility.py +87 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +26 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/types/service_get_v_1_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_type.py +59 -0
- rtaylor_205/services/types/service_get_v_1_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/types/service_get_v_1_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_status.py +7 -0
- rtaylor_205/services/types/service_get_v_1_response_task.py +21 -0
- rtaylor_205/services/types/service_get_v_1_response_tasks_element_type.py +35 -0
- rtaylor_205/services/types/service_note_get_v_1_response.py +35 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data.py +139 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_allergy.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_icd_10.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_medication.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_monitoring_datum.py +23 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_scored_assessment.py +23 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_signature.py +24 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_signature_field_provider.py +40 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addenda_element_signature_field_provider_field_type.py +7 -0
- rtaylor_205/services/types/service_note_get_v_1_response_addendum.py +32 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data.py +131 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_allergy.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_icd_10.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_medication.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_monitoring_data_element_value.py +3 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_monitoring_datum.py +23 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_scored_assessment.py +23 -0
- rtaylor_205/services/types/service_note_get_v_1_response_data_field_scored_assessments_element_type.py +7 -0
- rtaylor_205/services/types/service_note_get_v_1_response_signature.py +22 -0
- rtaylor_205/services/types/service_note_get_v_1_response_signature_field_provider.py +40 -0
- rtaylor_205/services/types/service_note_get_v_1_response_signature_field_provider_field_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response.py +102 -0
- rtaylor_205/services/types/service_stream_v_1_response_cancellation_reason.py +5 -0
- rtaylor_205/services/types/service_stream_v_1_response_claim_status.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_coverage_status.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_location.py +38 -0
- rtaylor_205/services/types/service_stream_v_1_response_location_field_country.py +5 -0
- rtaylor_205/services/types/service_stream_v_1_response_location_field_state.py +60 -0
- rtaylor_205/services/types/service_stream_v_1_response_metadata.py +23 -0
- rtaylor_205/services/types/service_stream_v_1_response_patient_responsibility.py +38 -0
- rtaylor_205/services/types/service_stream_v_1_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/types/service_stream_v_1_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_payment.py +37 -0
- rtaylor_205/services/types/service_stream_v_1_response_payments_element_type.py +5 -0
- rtaylor_205/services/types/service_stream_v_1_response_provider.py +38 -0
- rtaylor_205/services/types/service_stream_v_1_response_provider_field_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_responsible_party.py +5 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility.py +91 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_type.py +61 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_status.py +7 -0
- rtaylor_205/services/types/service_stream_v_1_response_task.py +21 -0
- rtaylor_205/services/types/service_stream_v_1_response_tasks_element_type.py +35 -0
- rtaylor_205/services/types/services_list_v_1_filter_provider_id.py +3 -0
- rtaylor_205/services/types/services_list_v_1_filter_status.py +5 -0
- rtaylor_205/services/types/services_list_v_1_filter_status_element.py +7 -0
- rtaylor_205/services/types/services_list_v_1_order_created_at.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response.py +28 -0
- rtaylor_205/services/types/services_list_v_1_response_item.py +102 -0
- rtaylor_205/services/types/services_list_v_1_response_item_cancellation_reason.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response_item_claim_status.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_coverage_status.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_location.py +38 -0
- rtaylor_205/services/types/services_list_v_1_response_item_location_field_country.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response_item_location_field_state.py +60 -0
- rtaylor_205/services/types/services_list_v_1_response_item_metadata.py +23 -0
- rtaylor_205/services/types/services_list_v_1_response_item_patient_responsibility.py +38 -0
- rtaylor_205/services/types/services_list_v_1_response_item_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/types/services_list_v_1_response_item_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_payment.py +37 -0
- rtaylor_205/services/types/services_list_v_1_response_item_payments_element_type.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response_item_provider.py +38 -0
- rtaylor_205/services/types/services_list_v_1_response_item_provider_field_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_responsible_party.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility.py +91 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +5 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +43 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_type.py +63 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_type_field_note_field.py +3 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_status.py +7 -0
- rtaylor_205/services/types/services_list_v_1_response_item_task.py +21 -0
- rtaylor_205/services/types/services_list_v_1_response_item_tasks_element_type.py +35 -0
- rtaylor_205/services/v_2/__init__.py +502 -0
- rtaylor_205/services/v_2/client.py +477 -0
- rtaylor_205/services/v_2/raw_client.py +503 -0
- rtaylor_205/services/v_2/types/__init__.py +666 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_request.py +26 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_request_cancellation_reason.py +5 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response.py +102 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_cancellation_reason.py +5 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_claim_status.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_coverage_status.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_location.py +38 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_location_field_country.py +5 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_location_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_metadata.py +23 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_patient_responsibility.py +38 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_payment.py +37 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_payments_element_type.py +5 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_provider.py +38 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_provider_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_responsible_party.py +5 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility.py +91 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_type.py +61 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_status.py +7 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_task.py +21 -0
- rtaylor_205/services/v_2/types/service_cancel_v_2_response_tasks_element_type.py +35 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request.py +63 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_location.py +38 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_location_field_country.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_location_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_metadata.py +23 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_responsible_party.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_service_eligibility.py +33 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/v_2/types/service_create_v_2_request_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response.py +102 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_cancellation_reason.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_claim_status.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_coverage_status.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_location.py +38 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_location_field_country.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_location_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_metadata.py +23 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_patient_responsibility.py +38 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_payment.py +37 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_payments_element_type.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_provider.py +38 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_provider_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_responsible_party.py +5 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility.py +91 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_type.py +61 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_status.py +7 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_task.py +21 -0
- rtaylor_205/services/v_2/types/service_create_v_2_response_tasks_element_type.py +35 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request.py +60 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request_location.py +38 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request_location_field_country.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request_location_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request_metadata.py +23 -0
- rtaylor_205/services/v_2/types/service_update_v_2_request_responsible_party.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response.py +102 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_cancellation_reason.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_claim_status.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_coverage_status.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_location.py +38 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_location_field_country.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_location_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_metadata.py +23 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_patient_responsibility.py +38 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_patient_responsibility_field_amount.py +80 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_patient_responsibility_field_amount_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_patient_responsibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_payment.py +37 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_payments_element_type.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_provider.py +38 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_provider_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_responsible_party.py +5 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility.py +91 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_clinical_info.py +24 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_clinical_info_field_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_condition.py +28 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis.py +3 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit.py +41 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units.py +34 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility.py +84 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_conditional_patient_responsibility.py +41 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_message.py +3 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_patient_responsibility.py +80 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_patient_responsibility_field_deductible_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_policy_id.py +3 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_provider.py +40 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_providers_element_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_state.py +60 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_eligibility_field_status.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_type.py +61 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_type_field_note_field.py +3 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_type_field_place_of_service.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_type_field_provider_type.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_service_type_field_provider_types_element.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_status.py +7 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_task.py +21 -0
- rtaylor_205/services/v_2/types/service_update_v_2_response_tasks_element_type.py +35 -0
- rtaylor_205/version.py +3 -0
- usebridge_api-0.1.0.dist-info/METADATA +239 -0
- usebridge_api-0.1.0.dist-info/RECORD +892 -0
- usebridge_api-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,947 @@
|
|
|
1
|
+
# This file was auto-generated by Fern from our API Definition.
|
|
2
|
+
|
|
3
|
+
# isort: skip_file
|
|
4
|
+
|
|
5
|
+
import typing
|
|
6
|
+
from importlib import import_module
|
|
7
|
+
|
|
8
|
+
if typing.TYPE_CHECKING:
|
|
9
|
+
from .service_create_v_1_request import ServiceCreateV1Request
|
|
10
|
+
from .service_create_v_1_request_location import ServiceCreateV1RequestLocation
|
|
11
|
+
from .service_create_v_1_request_location_field_country import ServiceCreateV1RequestLocationFieldCountry
|
|
12
|
+
from .service_create_v_1_request_location_field_state import ServiceCreateV1RequestLocationFieldState
|
|
13
|
+
from .service_create_v_1_request_metadata import ServiceCreateV1RequestMetadata
|
|
14
|
+
from .service_create_v_1_request_responsible_party import ServiceCreateV1RequestResponsibleParty
|
|
15
|
+
from .service_create_v_1_request_service_eligibility import ServiceCreateV1RequestServiceEligibility
|
|
16
|
+
from .service_create_v_1_request_service_eligibility_field_clinical_info import (
|
|
17
|
+
ServiceCreateV1RequestServiceEligibilityFieldClinicalInfo,
|
|
18
|
+
)
|
|
19
|
+
from .service_create_v_1_request_service_eligibility_field_clinical_info_field_diagnosis import (
|
|
20
|
+
ServiceCreateV1RequestServiceEligibilityFieldClinicalInfoFieldDiagnosis,
|
|
21
|
+
)
|
|
22
|
+
from .service_create_v_1_response import ServiceCreateV1Response
|
|
23
|
+
from .service_create_v_1_response_cancellation_reason import ServiceCreateV1ResponseCancellationReason
|
|
24
|
+
from .service_create_v_1_response_claim_status import ServiceCreateV1ResponseClaimStatus
|
|
25
|
+
from .service_create_v_1_response_coverage_status import ServiceCreateV1ResponseCoverageStatus
|
|
26
|
+
from .service_create_v_1_response_location import ServiceCreateV1ResponseLocation
|
|
27
|
+
from .service_create_v_1_response_location_field_country import ServiceCreateV1ResponseLocationFieldCountry
|
|
28
|
+
from .service_create_v_1_response_location_field_state import ServiceCreateV1ResponseLocationFieldState
|
|
29
|
+
from .service_create_v_1_response_metadata import ServiceCreateV1ResponseMetadata
|
|
30
|
+
from .service_create_v_1_response_patient_responsibility import ServiceCreateV1ResponsePatientResponsibility
|
|
31
|
+
from .service_create_v_1_response_patient_responsibility_field_amount import (
|
|
32
|
+
ServiceCreateV1ResponsePatientResponsibilityFieldAmount,
|
|
33
|
+
)
|
|
34
|
+
from .service_create_v_1_response_patient_responsibility_field_amount_field_deductible_type import (
|
|
35
|
+
ServiceCreateV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType,
|
|
36
|
+
)
|
|
37
|
+
from .service_create_v_1_response_patient_responsibility_field_status import (
|
|
38
|
+
ServiceCreateV1ResponsePatientResponsibilityFieldStatus,
|
|
39
|
+
)
|
|
40
|
+
from .service_create_v_1_response_payment import ServiceCreateV1ResponsePayment
|
|
41
|
+
from .service_create_v_1_response_payments_element_type import ServiceCreateV1ResponsePaymentsElementType
|
|
42
|
+
from .service_create_v_1_response_provider import ServiceCreateV1ResponseProvider
|
|
43
|
+
from .service_create_v_1_response_provider_field_type import ServiceCreateV1ResponseProviderFieldType
|
|
44
|
+
from .service_create_v_1_response_responsible_party import ServiceCreateV1ResponseResponsibleParty
|
|
45
|
+
from .service_create_v_1_response_service_eligibility import ServiceCreateV1ResponseServiceEligibility
|
|
46
|
+
from .service_create_v_1_response_service_eligibility_field_clinical_info import (
|
|
47
|
+
ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfo,
|
|
48
|
+
)
|
|
49
|
+
from .service_create_v_1_response_service_eligibility_field_clinical_info_field_diagnosis import (
|
|
50
|
+
ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis,
|
|
51
|
+
)
|
|
52
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition import (
|
|
53
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition,
|
|
54
|
+
)
|
|
55
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis import (
|
|
56
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis,
|
|
57
|
+
)
|
|
58
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit import (
|
|
59
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit,
|
|
60
|
+
)
|
|
61
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric import (
|
|
62
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric,
|
|
63
|
+
)
|
|
64
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period import (
|
|
65
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod,
|
|
66
|
+
)
|
|
67
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type import (
|
|
68
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType,
|
|
69
|
+
)
|
|
70
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units import (
|
|
71
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits,
|
|
72
|
+
)
|
|
73
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility import (
|
|
74
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility,
|
|
75
|
+
)
|
|
76
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type import (
|
|
77
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType,
|
|
78
|
+
)
|
|
79
|
+
from .service_create_v_1_response_service_eligibility_field_conditional_patient_responsibility import (
|
|
80
|
+
ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibility,
|
|
81
|
+
)
|
|
82
|
+
from .service_create_v_1_response_service_eligibility_field_message import (
|
|
83
|
+
ServiceCreateV1ResponseServiceEligibilityFieldMessage,
|
|
84
|
+
)
|
|
85
|
+
from .service_create_v_1_response_service_eligibility_field_patient_responsibility import (
|
|
86
|
+
ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibility,
|
|
87
|
+
)
|
|
88
|
+
from .service_create_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type import (
|
|
89
|
+
ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType,
|
|
90
|
+
)
|
|
91
|
+
from .service_create_v_1_response_service_eligibility_field_policy_id import (
|
|
92
|
+
ServiceCreateV1ResponseServiceEligibilityFieldPolicyId,
|
|
93
|
+
)
|
|
94
|
+
from .service_create_v_1_response_service_eligibility_field_provider import (
|
|
95
|
+
ServiceCreateV1ResponseServiceEligibilityFieldProvider,
|
|
96
|
+
)
|
|
97
|
+
from .service_create_v_1_response_service_eligibility_field_providers_element_type import (
|
|
98
|
+
ServiceCreateV1ResponseServiceEligibilityFieldProvidersElementType,
|
|
99
|
+
)
|
|
100
|
+
from .service_create_v_1_response_service_eligibility_field_state import (
|
|
101
|
+
ServiceCreateV1ResponseServiceEligibilityFieldState,
|
|
102
|
+
)
|
|
103
|
+
from .service_create_v_1_response_service_eligibility_field_status import (
|
|
104
|
+
ServiceCreateV1ResponseServiceEligibilityFieldStatus,
|
|
105
|
+
)
|
|
106
|
+
from .service_create_v_1_response_service_type import ServiceCreateV1ResponseServiceType
|
|
107
|
+
from .service_create_v_1_response_service_type_field_note_field import (
|
|
108
|
+
ServiceCreateV1ResponseServiceTypeFieldNoteField,
|
|
109
|
+
)
|
|
110
|
+
from .service_create_v_1_response_service_type_field_place_of_service import (
|
|
111
|
+
ServiceCreateV1ResponseServiceTypeFieldPlaceOfService,
|
|
112
|
+
)
|
|
113
|
+
from .service_create_v_1_response_service_type_field_provider_type import (
|
|
114
|
+
ServiceCreateV1ResponseServiceTypeFieldProviderType,
|
|
115
|
+
)
|
|
116
|
+
from .service_create_v_1_response_service_type_field_provider_types_element import (
|
|
117
|
+
ServiceCreateV1ResponseServiceTypeFieldProviderTypesElement,
|
|
118
|
+
)
|
|
119
|
+
from .service_create_v_1_response_status import ServiceCreateV1ResponseStatus
|
|
120
|
+
from .service_create_v_1_response_task import ServiceCreateV1ResponseTask
|
|
121
|
+
from .service_create_v_1_response_tasks_element_type import ServiceCreateV1ResponseTasksElementType
|
|
122
|
+
from .service_get_v_1_response import ServiceGetV1Response
|
|
123
|
+
from .service_get_v_1_response_cancellation_reason import ServiceGetV1ResponseCancellationReason
|
|
124
|
+
from .service_get_v_1_response_claim_status import ServiceGetV1ResponseClaimStatus
|
|
125
|
+
from .service_get_v_1_response_coverage_status import ServiceGetV1ResponseCoverageStatus
|
|
126
|
+
from .service_get_v_1_response_location import ServiceGetV1ResponseLocation
|
|
127
|
+
from .service_get_v_1_response_location_field_country import ServiceGetV1ResponseLocationFieldCountry
|
|
128
|
+
from .service_get_v_1_response_location_field_state import ServiceGetV1ResponseLocationFieldState
|
|
129
|
+
from .service_get_v_1_response_metadata import ServiceGetV1ResponseMetadata
|
|
130
|
+
from .service_get_v_1_response_patient_responsibility import ServiceGetV1ResponsePatientResponsibility
|
|
131
|
+
from .service_get_v_1_response_patient_responsibility_field_amount import (
|
|
132
|
+
ServiceGetV1ResponsePatientResponsibilityFieldAmount,
|
|
133
|
+
)
|
|
134
|
+
from .service_get_v_1_response_patient_responsibility_field_amount_field_deductible_type import (
|
|
135
|
+
ServiceGetV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType,
|
|
136
|
+
)
|
|
137
|
+
from .service_get_v_1_response_patient_responsibility_field_status import (
|
|
138
|
+
ServiceGetV1ResponsePatientResponsibilityFieldStatus,
|
|
139
|
+
)
|
|
140
|
+
from .service_get_v_1_response_payment import ServiceGetV1ResponsePayment
|
|
141
|
+
from .service_get_v_1_response_payments_element_type import ServiceGetV1ResponsePaymentsElementType
|
|
142
|
+
from .service_get_v_1_response_provider import ServiceGetV1ResponseProvider
|
|
143
|
+
from .service_get_v_1_response_provider_field_type import ServiceGetV1ResponseProviderFieldType
|
|
144
|
+
from .service_get_v_1_response_responsible_party import ServiceGetV1ResponseResponsibleParty
|
|
145
|
+
from .service_get_v_1_response_service_eligibility import ServiceGetV1ResponseServiceEligibility
|
|
146
|
+
from .service_get_v_1_response_service_eligibility_field_clinical_info import (
|
|
147
|
+
ServiceGetV1ResponseServiceEligibilityFieldClinicalInfo,
|
|
148
|
+
)
|
|
149
|
+
from .service_get_v_1_response_service_eligibility_field_clinical_info_field_diagnosis import (
|
|
150
|
+
ServiceGetV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis,
|
|
151
|
+
)
|
|
152
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition import (
|
|
153
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition,
|
|
154
|
+
)
|
|
155
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis import (
|
|
156
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis,
|
|
157
|
+
)
|
|
158
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit import (
|
|
159
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit,
|
|
160
|
+
)
|
|
161
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric import (
|
|
162
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric,
|
|
163
|
+
)
|
|
164
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period import (
|
|
165
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod,
|
|
166
|
+
)
|
|
167
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type import (
|
|
168
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType,
|
|
169
|
+
)
|
|
170
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units import (
|
|
171
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits,
|
|
172
|
+
)
|
|
173
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility import (
|
|
174
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility,
|
|
175
|
+
)
|
|
176
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type import (
|
|
177
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType,
|
|
178
|
+
)
|
|
179
|
+
from .service_get_v_1_response_service_eligibility_field_conditional_patient_responsibility import (
|
|
180
|
+
ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibility,
|
|
181
|
+
)
|
|
182
|
+
from .service_get_v_1_response_service_eligibility_field_message import (
|
|
183
|
+
ServiceGetV1ResponseServiceEligibilityFieldMessage,
|
|
184
|
+
)
|
|
185
|
+
from .service_get_v_1_response_service_eligibility_field_patient_responsibility import (
|
|
186
|
+
ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibility,
|
|
187
|
+
)
|
|
188
|
+
from .service_get_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type import (
|
|
189
|
+
ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType,
|
|
190
|
+
)
|
|
191
|
+
from .service_get_v_1_response_service_eligibility_field_policy_id import (
|
|
192
|
+
ServiceGetV1ResponseServiceEligibilityFieldPolicyId,
|
|
193
|
+
)
|
|
194
|
+
from .service_get_v_1_response_service_eligibility_field_provider import (
|
|
195
|
+
ServiceGetV1ResponseServiceEligibilityFieldProvider,
|
|
196
|
+
)
|
|
197
|
+
from .service_get_v_1_response_service_eligibility_field_providers_element_type import (
|
|
198
|
+
ServiceGetV1ResponseServiceEligibilityFieldProvidersElementType,
|
|
199
|
+
)
|
|
200
|
+
from .service_get_v_1_response_service_eligibility_field_state import (
|
|
201
|
+
ServiceGetV1ResponseServiceEligibilityFieldState,
|
|
202
|
+
)
|
|
203
|
+
from .service_get_v_1_response_service_eligibility_field_status import (
|
|
204
|
+
ServiceGetV1ResponseServiceEligibilityFieldStatus,
|
|
205
|
+
)
|
|
206
|
+
from .service_get_v_1_response_service_type import ServiceGetV1ResponseServiceType
|
|
207
|
+
from .service_get_v_1_response_service_type_field_note_field import ServiceGetV1ResponseServiceTypeFieldNoteField
|
|
208
|
+
from .service_get_v_1_response_service_type_field_place_of_service import (
|
|
209
|
+
ServiceGetV1ResponseServiceTypeFieldPlaceOfService,
|
|
210
|
+
)
|
|
211
|
+
from .service_get_v_1_response_service_type_field_provider_type import (
|
|
212
|
+
ServiceGetV1ResponseServiceTypeFieldProviderType,
|
|
213
|
+
)
|
|
214
|
+
from .service_get_v_1_response_service_type_field_provider_types_element import (
|
|
215
|
+
ServiceGetV1ResponseServiceTypeFieldProviderTypesElement,
|
|
216
|
+
)
|
|
217
|
+
from .service_get_v_1_response_status import ServiceGetV1ResponseStatus
|
|
218
|
+
from .service_get_v_1_response_task import ServiceGetV1ResponseTask
|
|
219
|
+
from .service_get_v_1_response_tasks_element_type import ServiceGetV1ResponseTasksElementType
|
|
220
|
+
from .service_note_get_v_1_response import ServiceNoteGetV1Response
|
|
221
|
+
from .service_note_get_v_1_response_addenda_element_data import ServiceNoteGetV1ResponseAddendaElementData
|
|
222
|
+
from .service_note_get_v_1_response_addenda_element_data_field_allergy import (
|
|
223
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldAllergy,
|
|
224
|
+
)
|
|
225
|
+
from .service_note_get_v_1_response_addenda_element_data_field_icd_10 import (
|
|
226
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldIcd10,
|
|
227
|
+
)
|
|
228
|
+
from .service_note_get_v_1_response_addenda_element_data_field_medication import (
|
|
229
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldMedication,
|
|
230
|
+
)
|
|
231
|
+
from .service_note_get_v_1_response_addenda_element_data_field_monitoring_data_element_value import (
|
|
232
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDataElementValue,
|
|
233
|
+
)
|
|
234
|
+
from .service_note_get_v_1_response_addenda_element_data_field_monitoring_datum import (
|
|
235
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDatum,
|
|
236
|
+
)
|
|
237
|
+
from .service_note_get_v_1_response_addenda_element_data_field_scored_assessment import (
|
|
238
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessment,
|
|
239
|
+
)
|
|
240
|
+
from .service_note_get_v_1_response_addenda_element_data_field_scored_assessments_element_type import (
|
|
241
|
+
ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessmentsElementType,
|
|
242
|
+
)
|
|
243
|
+
from .service_note_get_v_1_response_addenda_element_signature import ServiceNoteGetV1ResponseAddendaElementSignature
|
|
244
|
+
from .service_note_get_v_1_response_addenda_element_signature_field_provider import (
|
|
245
|
+
ServiceNoteGetV1ResponseAddendaElementSignatureFieldProvider,
|
|
246
|
+
)
|
|
247
|
+
from .service_note_get_v_1_response_addenda_element_signature_field_provider_field_type import (
|
|
248
|
+
ServiceNoteGetV1ResponseAddendaElementSignatureFieldProviderFieldType,
|
|
249
|
+
)
|
|
250
|
+
from .service_note_get_v_1_response_addendum import ServiceNoteGetV1ResponseAddendum
|
|
251
|
+
from .service_note_get_v_1_response_data import ServiceNoteGetV1ResponseData
|
|
252
|
+
from .service_note_get_v_1_response_data_field_allergy import ServiceNoteGetV1ResponseDataFieldAllergy
|
|
253
|
+
from .service_note_get_v_1_response_data_field_icd_10 import ServiceNoteGetV1ResponseDataFieldIcd10
|
|
254
|
+
from .service_note_get_v_1_response_data_field_medication import ServiceNoteGetV1ResponseDataFieldMedication
|
|
255
|
+
from .service_note_get_v_1_response_data_field_monitoring_data_element_value import (
|
|
256
|
+
ServiceNoteGetV1ResponseDataFieldMonitoringDataElementValue,
|
|
257
|
+
)
|
|
258
|
+
from .service_note_get_v_1_response_data_field_monitoring_datum import (
|
|
259
|
+
ServiceNoteGetV1ResponseDataFieldMonitoringDatum,
|
|
260
|
+
)
|
|
261
|
+
from .service_note_get_v_1_response_data_field_scored_assessment import (
|
|
262
|
+
ServiceNoteGetV1ResponseDataFieldScoredAssessment,
|
|
263
|
+
)
|
|
264
|
+
from .service_note_get_v_1_response_data_field_scored_assessments_element_type import (
|
|
265
|
+
ServiceNoteGetV1ResponseDataFieldScoredAssessmentsElementType,
|
|
266
|
+
)
|
|
267
|
+
from .service_note_get_v_1_response_signature import ServiceNoteGetV1ResponseSignature
|
|
268
|
+
from .service_note_get_v_1_response_signature_field_provider import ServiceNoteGetV1ResponseSignatureFieldProvider
|
|
269
|
+
from .service_note_get_v_1_response_signature_field_provider_field_type import (
|
|
270
|
+
ServiceNoteGetV1ResponseSignatureFieldProviderFieldType,
|
|
271
|
+
)
|
|
272
|
+
from .service_stream_v_1_response import ServiceStreamV1Response
|
|
273
|
+
from .service_stream_v_1_response_cancellation_reason import ServiceStreamV1ResponseCancellationReason
|
|
274
|
+
from .service_stream_v_1_response_claim_status import ServiceStreamV1ResponseClaimStatus
|
|
275
|
+
from .service_stream_v_1_response_coverage_status import ServiceStreamV1ResponseCoverageStatus
|
|
276
|
+
from .service_stream_v_1_response_location import ServiceStreamV1ResponseLocation
|
|
277
|
+
from .service_stream_v_1_response_location_field_country import ServiceStreamV1ResponseLocationFieldCountry
|
|
278
|
+
from .service_stream_v_1_response_location_field_state import ServiceStreamV1ResponseLocationFieldState
|
|
279
|
+
from .service_stream_v_1_response_metadata import ServiceStreamV1ResponseMetadata
|
|
280
|
+
from .service_stream_v_1_response_patient_responsibility import ServiceStreamV1ResponsePatientResponsibility
|
|
281
|
+
from .service_stream_v_1_response_patient_responsibility_field_amount import (
|
|
282
|
+
ServiceStreamV1ResponsePatientResponsibilityFieldAmount,
|
|
283
|
+
)
|
|
284
|
+
from .service_stream_v_1_response_patient_responsibility_field_amount_field_deductible_type import (
|
|
285
|
+
ServiceStreamV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType,
|
|
286
|
+
)
|
|
287
|
+
from .service_stream_v_1_response_patient_responsibility_field_status import (
|
|
288
|
+
ServiceStreamV1ResponsePatientResponsibilityFieldStatus,
|
|
289
|
+
)
|
|
290
|
+
from .service_stream_v_1_response_payment import ServiceStreamV1ResponsePayment
|
|
291
|
+
from .service_stream_v_1_response_payments_element_type import ServiceStreamV1ResponsePaymentsElementType
|
|
292
|
+
from .service_stream_v_1_response_provider import ServiceStreamV1ResponseProvider
|
|
293
|
+
from .service_stream_v_1_response_provider_field_type import ServiceStreamV1ResponseProviderFieldType
|
|
294
|
+
from .service_stream_v_1_response_responsible_party import ServiceStreamV1ResponseResponsibleParty
|
|
295
|
+
from .service_stream_v_1_response_service_eligibility import ServiceStreamV1ResponseServiceEligibility
|
|
296
|
+
from .service_stream_v_1_response_service_eligibility_field_clinical_info import (
|
|
297
|
+
ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfo,
|
|
298
|
+
)
|
|
299
|
+
from .service_stream_v_1_response_service_eligibility_field_clinical_info_field_diagnosis import (
|
|
300
|
+
ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis,
|
|
301
|
+
)
|
|
302
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition import (
|
|
303
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition,
|
|
304
|
+
)
|
|
305
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis import (
|
|
306
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis,
|
|
307
|
+
)
|
|
308
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit import (
|
|
309
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit,
|
|
310
|
+
)
|
|
311
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric import (
|
|
312
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric,
|
|
313
|
+
)
|
|
314
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period import (
|
|
315
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod,
|
|
316
|
+
)
|
|
317
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type import (
|
|
318
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType,
|
|
319
|
+
)
|
|
320
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units import (
|
|
321
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits,
|
|
322
|
+
)
|
|
323
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility import (
|
|
324
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility,
|
|
325
|
+
)
|
|
326
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type import (
|
|
327
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType,
|
|
328
|
+
)
|
|
329
|
+
from .service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibility import (
|
|
330
|
+
ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibility,
|
|
331
|
+
)
|
|
332
|
+
from .service_stream_v_1_response_service_eligibility_field_message import (
|
|
333
|
+
ServiceStreamV1ResponseServiceEligibilityFieldMessage,
|
|
334
|
+
)
|
|
335
|
+
from .service_stream_v_1_response_service_eligibility_field_patient_responsibility import (
|
|
336
|
+
ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibility,
|
|
337
|
+
)
|
|
338
|
+
from .service_stream_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type import (
|
|
339
|
+
ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType,
|
|
340
|
+
)
|
|
341
|
+
from .service_stream_v_1_response_service_eligibility_field_policy_id import (
|
|
342
|
+
ServiceStreamV1ResponseServiceEligibilityFieldPolicyId,
|
|
343
|
+
)
|
|
344
|
+
from .service_stream_v_1_response_service_eligibility_field_provider import (
|
|
345
|
+
ServiceStreamV1ResponseServiceEligibilityFieldProvider,
|
|
346
|
+
)
|
|
347
|
+
from .service_stream_v_1_response_service_eligibility_field_providers_element_type import (
|
|
348
|
+
ServiceStreamV1ResponseServiceEligibilityFieldProvidersElementType,
|
|
349
|
+
)
|
|
350
|
+
from .service_stream_v_1_response_service_eligibility_field_state import (
|
|
351
|
+
ServiceStreamV1ResponseServiceEligibilityFieldState,
|
|
352
|
+
)
|
|
353
|
+
from .service_stream_v_1_response_service_eligibility_field_status import (
|
|
354
|
+
ServiceStreamV1ResponseServiceEligibilityFieldStatus,
|
|
355
|
+
)
|
|
356
|
+
from .service_stream_v_1_response_service_type import ServiceStreamV1ResponseServiceType
|
|
357
|
+
from .service_stream_v_1_response_service_type_field_note_field import (
|
|
358
|
+
ServiceStreamV1ResponseServiceTypeFieldNoteField,
|
|
359
|
+
)
|
|
360
|
+
from .service_stream_v_1_response_service_type_field_place_of_service import (
|
|
361
|
+
ServiceStreamV1ResponseServiceTypeFieldPlaceOfService,
|
|
362
|
+
)
|
|
363
|
+
from .service_stream_v_1_response_service_type_field_provider_type import (
|
|
364
|
+
ServiceStreamV1ResponseServiceTypeFieldProviderType,
|
|
365
|
+
)
|
|
366
|
+
from .service_stream_v_1_response_service_type_field_provider_types_element import (
|
|
367
|
+
ServiceStreamV1ResponseServiceTypeFieldProviderTypesElement,
|
|
368
|
+
)
|
|
369
|
+
from .service_stream_v_1_response_status import ServiceStreamV1ResponseStatus
|
|
370
|
+
from .service_stream_v_1_response_task import ServiceStreamV1ResponseTask
|
|
371
|
+
from .service_stream_v_1_response_tasks_element_type import ServiceStreamV1ResponseTasksElementType
|
|
372
|
+
from .services_list_v_1_filter_provider_id import ServicesListV1FilterProviderId
|
|
373
|
+
from .services_list_v_1_filter_status import ServicesListV1FilterStatus
|
|
374
|
+
from .services_list_v_1_filter_status_element import ServicesListV1FilterStatusElement
|
|
375
|
+
from .services_list_v_1_order_created_at import ServicesListV1OrderCreatedAt
|
|
376
|
+
from .services_list_v_1_response import ServicesListV1Response
|
|
377
|
+
from .services_list_v_1_response_item import ServicesListV1ResponseItem
|
|
378
|
+
from .services_list_v_1_response_item_cancellation_reason import ServicesListV1ResponseItemCancellationReason
|
|
379
|
+
from .services_list_v_1_response_item_claim_status import ServicesListV1ResponseItemClaimStatus
|
|
380
|
+
from .services_list_v_1_response_item_coverage_status import ServicesListV1ResponseItemCoverageStatus
|
|
381
|
+
from .services_list_v_1_response_item_location import ServicesListV1ResponseItemLocation
|
|
382
|
+
from .services_list_v_1_response_item_location_field_country import ServicesListV1ResponseItemLocationFieldCountry
|
|
383
|
+
from .services_list_v_1_response_item_location_field_state import ServicesListV1ResponseItemLocationFieldState
|
|
384
|
+
from .services_list_v_1_response_item_metadata import ServicesListV1ResponseItemMetadata
|
|
385
|
+
from .services_list_v_1_response_item_patient_responsibility import ServicesListV1ResponseItemPatientResponsibility
|
|
386
|
+
from .services_list_v_1_response_item_patient_responsibility_field_amount import (
|
|
387
|
+
ServicesListV1ResponseItemPatientResponsibilityFieldAmount,
|
|
388
|
+
)
|
|
389
|
+
from .services_list_v_1_response_item_patient_responsibility_field_amount_field_deductible_type import (
|
|
390
|
+
ServicesListV1ResponseItemPatientResponsibilityFieldAmountFieldDeductibleType,
|
|
391
|
+
)
|
|
392
|
+
from .services_list_v_1_response_item_patient_responsibility_field_status import (
|
|
393
|
+
ServicesListV1ResponseItemPatientResponsibilityFieldStatus,
|
|
394
|
+
)
|
|
395
|
+
from .services_list_v_1_response_item_payment import ServicesListV1ResponseItemPayment
|
|
396
|
+
from .services_list_v_1_response_item_payments_element_type import ServicesListV1ResponseItemPaymentsElementType
|
|
397
|
+
from .services_list_v_1_response_item_provider import ServicesListV1ResponseItemProvider
|
|
398
|
+
from .services_list_v_1_response_item_provider_field_type import ServicesListV1ResponseItemProviderFieldType
|
|
399
|
+
from .services_list_v_1_response_item_responsible_party import ServicesListV1ResponseItemResponsibleParty
|
|
400
|
+
from .services_list_v_1_response_item_service_eligibility import ServicesListV1ResponseItemServiceEligibility
|
|
401
|
+
from .services_list_v_1_response_item_service_eligibility_field_clinical_info import (
|
|
402
|
+
ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfo,
|
|
403
|
+
)
|
|
404
|
+
from .services_list_v_1_response_item_service_eligibility_field_clinical_info_field_diagnosis import (
|
|
405
|
+
ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfoFieldDiagnosis,
|
|
406
|
+
)
|
|
407
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_condition import (
|
|
408
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition,
|
|
409
|
+
)
|
|
410
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis import (
|
|
411
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis,
|
|
412
|
+
)
|
|
413
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit import (
|
|
414
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit,
|
|
415
|
+
)
|
|
416
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric import (
|
|
417
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric,
|
|
418
|
+
)
|
|
419
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period import (
|
|
420
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod,
|
|
421
|
+
)
|
|
422
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type import (
|
|
423
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType,
|
|
424
|
+
)
|
|
425
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units import (
|
|
426
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits,
|
|
427
|
+
)
|
|
428
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility import (
|
|
429
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility,
|
|
430
|
+
)
|
|
431
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type import (
|
|
432
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType,
|
|
433
|
+
)
|
|
434
|
+
from .services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibility import (
|
|
435
|
+
ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibility,
|
|
436
|
+
)
|
|
437
|
+
from .services_list_v_1_response_item_service_eligibility_field_message import (
|
|
438
|
+
ServicesListV1ResponseItemServiceEligibilityFieldMessage,
|
|
439
|
+
)
|
|
440
|
+
from .services_list_v_1_response_item_service_eligibility_field_patient_responsibility import (
|
|
441
|
+
ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibility,
|
|
442
|
+
)
|
|
443
|
+
from .services_list_v_1_response_item_service_eligibility_field_patient_responsibility_field_deductible_type import (
|
|
444
|
+
ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibilityFieldDeductibleType,
|
|
445
|
+
)
|
|
446
|
+
from .services_list_v_1_response_item_service_eligibility_field_policy_id import (
|
|
447
|
+
ServicesListV1ResponseItemServiceEligibilityFieldPolicyId,
|
|
448
|
+
)
|
|
449
|
+
from .services_list_v_1_response_item_service_eligibility_field_provider import (
|
|
450
|
+
ServicesListV1ResponseItemServiceEligibilityFieldProvider,
|
|
451
|
+
)
|
|
452
|
+
from .services_list_v_1_response_item_service_eligibility_field_providers_element_type import (
|
|
453
|
+
ServicesListV1ResponseItemServiceEligibilityFieldProvidersElementType,
|
|
454
|
+
)
|
|
455
|
+
from .services_list_v_1_response_item_service_eligibility_field_state import (
|
|
456
|
+
ServicesListV1ResponseItemServiceEligibilityFieldState,
|
|
457
|
+
)
|
|
458
|
+
from .services_list_v_1_response_item_service_eligibility_field_status import (
|
|
459
|
+
ServicesListV1ResponseItemServiceEligibilityFieldStatus,
|
|
460
|
+
)
|
|
461
|
+
from .services_list_v_1_response_item_service_type import ServicesListV1ResponseItemServiceType
|
|
462
|
+
from .services_list_v_1_response_item_service_type_field_note_field import (
|
|
463
|
+
ServicesListV1ResponseItemServiceTypeFieldNoteField,
|
|
464
|
+
)
|
|
465
|
+
from .services_list_v_1_response_item_service_type_field_place_of_service import (
|
|
466
|
+
ServicesListV1ResponseItemServiceTypeFieldPlaceOfService,
|
|
467
|
+
)
|
|
468
|
+
from .services_list_v_1_response_item_service_type_field_provider_type import (
|
|
469
|
+
ServicesListV1ResponseItemServiceTypeFieldProviderType,
|
|
470
|
+
)
|
|
471
|
+
from .services_list_v_1_response_item_service_type_field_provider_types_element import (
|
|
472
|
+
ServicesListV1ResponseItemServiceTypeFieldProviderTypesElement,
|
|
473
|
+
)
|
|
474
|
+
from .services_list_v_1_response_item_status import ServicesListV1ResponseItemStatus
|
|
475
|
+
from .services_list_v_1_response_item_task import ServicesListV1ResponseItemTask
|
|
476
|
+
from .services_list_v_1_response_item_tasks_element_type import ServicesListV1ResponseItemTasksElementType
|
|
477
|
+
_dynamic_imports: typing.Dict[str, str] = {
|
|
478
|
+
"ServiceCreateV1Request": ".service_create_v_1_request",
|
|
479
|
+
"ServiceCreateV1RequestLocation": ".service_create_v_1_request_location",
|
|
480
|
+
"ServiceCreateV1RequestLocationFieldCountry": ".service_create_v_1_request_location_field_country",
|
|
481
|
+
"ServiceCreateV1RequestLocationFieldState": ".service_create_v_1_request_location_field_state",
|
|
482
|
+
"ServiceCreateV1RequestMetadata": ".service_create_v_1_request_metadata",
|
|
483
|
+
"ServiceCreateV1RequestResponsibleParty": ".service_create_v_1_request_responsible_party",
|
|
484
|
+
"ServiceCreateV1RequestServiceEligibility": ".service_create_v_1_request_service_eligibility",
|
|
485
|
+
"ServiceCreateV1RequestServiceEligibilityFieldClinicalInfo": ".service_create_v_1_request_service_eligibility_field_clinical_info",
|
|
486
|
+
"ServiceCreateV1RequestServiceEligibilityFieldClinicalInfoFieldDiagnosis": ".service_create_v_1_request_service_eligibility_field_clinical_info_field_diagnosis",
|
|
487
|
+
"ServiceCreateV1Response": ".service_create_v_1_response",
|
|
488
|
+
"ServiceCreateV1ResponseCancellationReason": ".service_create_v_1_response_cancellation_reason",
|
|
489
|
+
"ServiceCreateV1ResponseClaimStatus": ".service_create_v_1_response_claim_status",
|
|
490
|
+
"ServiceCreateV1ResponseCoverageStatus": ".service_create_v_1_response_coverage_status",
|
|
491
|
+
"ServiceCreateV1ResponseLocation": ".service_create_v_1_response_location",
|
|
492
|
+
"ServiceCreateV1ResponseLocationFieldCountry": ".service_create_v_1_response_location_field_country",
|
|
493
|
+
"ServiceCreateV1ResponseLocationFieldState": ".service_create_v_1_response_location_field_state",
|
|
494
|
+
"ServiceCreateV1ResponseMetadata": ".service_create_v_1_response_metadata",
|
|
495
|
+
"ServiceCreateV1ResponsePatientResponsibility": ".service_create_v_1_response_patient_responsibility",
|
|
496
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldAmount": ".service_create_v_1_response_patient_responsibility_field_amount",
|
|
497
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType": ".service_create_v_1_response_patient_responsibility_field_amount_field_deductible_type",
|
|
498
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldStatus": ".service_create_v_1_response_patient_responsibility_field_status",
|
|
499
|
+
"ServiceCreateV1ResponsePayment": ".service_create_v_1_response_payment",
|
|
500
|
+
"ServiceCreateV1ResponsePaymentsElementType": ".service_create_v_1_response_payments_element_type",
|
|
501
|
+
"ServiceCreateV1ResponseProvider": ".service_create_v_1_response_provider",
|
|
502
|
+
"ServiceCreateV1ResponseProviderFieldType": ".service_create_v_1_response_provider_field_type",
|
|
503
|
+
"ServiceCreateV1ResponseResponsibleParty": ".service_create_v_1_response_responsible_party",
|
|
504
|
+
"ServiceCreateV1ResponseServiceEligibility": ".service_create_v_1_response_service_eligibility",
|
|
505
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfo": ".service_create_v_1_response_service_eligibility_field_clinical_info",
|
|
506
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis": ".service_create_v_1_response_service_eligibility_field_clinical_info_field_diagnosis",
|
|
507
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition",
|
|
508
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis",
|
|
509
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit",
|
|
510
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric",
|
|
511
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period",
|
|
512
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type",
|
|
513
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units",
|
|
514
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility",
|
|
515
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type",
|
|
516
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibility": ".service_create_v_1_response_service_eligibility_field_conditional_patient_responsibility",
|
|
517
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldMessage": ".service_create_v_1_response_service_eligibility_field_message",
|
|
518
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibility": ".service_create_v_1_response_service_eligibility_field_patient_responsibility",
|
|
519
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType": ".service_create_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type",
|
|
520
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPolicyId": ".service_create_v_1_response_service_eligibility_field_policy_id",
|
|
521
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldProvider": ".service_create_v_1_response_service_eligibility_field_provider",
|
|
522
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldProvidersElementType": ".service_create_v_1_response_service_eligibility_field_providers_element_type",
|
|
523
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldState": ".service_create_v_1_response_service_eligibility_field_state",
|
|
524
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldStatus": ".service_create_v_1_response_service_eligibility_field_status",
|
|
525
|
+
"ServiceCreateV1ResponseServiceType": ".service_create_v_1_response_service_type",
|
|
526
|
+
"ServiceCreateV1ResponseServiceTypeFieldNoteField": ".service_create_v_1_response_service_type_field_note_field",
|
|
527
|
+
"ServiceCreateV1ResponseServiceTypeFieldPlaceOfService": ".service_create_v_1_response_service_type_field_place_of_service",
|
|
528
|
+
"ServiceCreateV1ResponseServiceTypeFieldProviderType": ".service_create_v_1_response_service_type_field_provider_type",
|
|
529
|
+
"ServiceCreateV1ResponseServiceTypeFieldProviderTypesElement": ".service_create_v_1_response_service_type_field_provider_types_element",
|
|
530
|
+
"ServiceCreateV1ResponseStatus": ".service_create_v_1_response_status",
|
|
531
|
+
"ServiceCreateV1ResponseTask": ".service_create_v_1_response_task",
|
|
532
|
+
"ServiceCreateV1ResponseTasksElementType": ".service_create_v_1_response_tasks_element_type",
|
|
533
|
+
"ServiceGetV1Response": ".service_get_v_1_response",
|
|
534
|
+
"ServiceGetV1ResponseCancellationReason": ".service_get_v_1_response_cancellation_reason",
|
|
535
|
+
"ServiceGetV1ResponseClaimStatus": ".service_get_v_1_response_claim_status",
|
|
536
|
+
"ServiceGetV1ResponseCoverageStatus": ".service_get_v_1_response_coverage_status",
|
|
537
|
+
"ServiceGetV1ResponseLocation": ".service_get_v_1_response_location",
|
|
538
|
+
"ServiceGetV1ResponseLocationFieldCountry": ".service_get_v_1_response_location_field_country",
|
|
539
|
+
"ServiceGetV1ResponseLocationFieldState": ".service_get_v_1_response_location_field_state",
|
|
540
|
+
"ServiceGetV1ResponseMetadata": ".service_get_v_1_response_metadata",
|
|
541
|
+
"ServiceGetV1ResponsePatientResponsibility": ".service_get_v_1_response_patient_responsibility",
|
|
542
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldAmount": ".service_get_v_1_response_patient_responsibility_field_amount",
|
|
543
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType": ".service_get_v_1_response_patient_responsibility_field_amount_field_deductible_type",
|
|
544
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldStatus": ".service_get_v_1_response_patient_responsibility_field_status",
|
|
545
|
+
"ServiceGetV1ResponsePayment": ".service_get_v_1_response_payment",
|
|
546
|
+
"ServiceGetV1ResponsePaymentsElementType": ".service_get_v_1_response_payments_element_type",
|
|
547
|
+
"ServiceGetV1ResponseProvider": ".service_get_v_1_response_provider",
|
|
548
|
+
"ServiceGetV1ResponseProviderFieldType": ".service_get_v_1_response_provider_field_type",
|
|
549
|
+
"ServiceGetV1ResponseResponsibleParty": ".service_get_v_1_response_responsible_party",
|
|
550
|
+
"ServiceGetV1ResponseServiceEligibility": ".service_get_v_1_response_service_eligibility",
|
|
551
|
+
"ServiceGetV1ResponseServiceEligibilityFieldClinicalInfo": ".service_get_v_1_response_service_eligibility_field_clinical_info",
|
|
552
|
+
"ServiceGetV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis": ".service_get_v_1_response_service_eligibility_field_clinical_info_field_diagnosis",
|
|
553
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition",
|
|
554
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis",
|
|
555
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit",
|
|
556
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric",
|
|
557
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period",
|
|
558
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type",
|
|
559
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units",
|
|
560
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility",
|
|
561
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type",
|
|
562
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibility": ".service_get_v_1_response_service_eligibility_field_conditional_patient_responsibility",
|
|
563
|
+
"ServiceGetV1ResponseServiceEligibilityFieldMessage": ".service_get_v_1_response_service_eligibility_field_message",
|
|
564
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibility": ".service_get_v_1_response_service_eligibility_field_patient_responsibility",
|
|
565
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType": ".service_get_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type",
|
|
566
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPolicyId": ".service_get_v_1_response_service_eligibility_field_policy_id",
|
|
567
|
+
"ServiceGetV1ResponseServiceEligibilityFieldProvider": ".service_get_v_1_response_service_eligibility_field_provider",
|
|
568
|
+
"ServiceGetV1ResponseServiceEligibilityFieldProvidersElementType": ".service_get_v_1_response_service_eligibility_field_providers_element_type",
|
|
569
|
+
"ServiceGetV1ResponseServiceEligibilityFieldState": ".service_get_v_1_response_service_eligibility_field_state",
|
|
570
|
+
"ServiceGetV1ResponseServiceEligibilityFieldStatus": ".service_get_v_1_response_service_eligibility_field_status",
|
|
571
|
+
"ServiceGetV1ResponseServiceType": ".service_get_v_1_response_service_type",
|
|
572
|
+
"ServiceGetV1ResponseServiceTypeFieldNoteField": ".service_get_v_1_response_service_type_field_note_field",
|
|
573
|
+
"ServiceGetV1ResponseServiceTypeFieldPlaceOfService": ".service_get_v_1_response_service_type_field_place_of_service",
|
|
574
|
+
"ServiceGetV1ResponseServiceTypeFieldProviderType": ".service_get_v_1_response_service_type_field_provider_type",
|
|
575
|
+
"ServiceGetV1ResponseServiceTypeFieldProviderTypesElement": ".service_get_v_1_response_service_type_field_provider_types_element",
|
|
576
|
+
"ServiceGetV1ResponseStatus": ".service_get_v_1_response_status",
|
|
577
|
+
"ServiceGetV1ResponseTask": ".service_get_v_1_response_task",
|
|
578
|
+
"ServiceGetV1ResponseTasksElementType": ".service_get_v_1_response_tasks_element_type",
|
|
579
|
+
"ServiceNoteGetV1Response": ".service_note_get_v_1_response",
|
|
580
|
+
"ServiceNoteGetV1ResponseAddendaElementData": ".service_note_get_v_1_response_addenda_element_data",
|
|
581
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldAllergy": ".service_note_get_v_1_response_addenda_element_data_field_allergy",
|
|
582
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldIcd10": ".service_note_get_v_1_response_addenda_element_data_field_icd_10",
|
|
583
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMedication": ".service_note_get_v_1_response_addenda_element_data_field_medication",
|
|
584
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDataElementValue": ".service_note_get_v_1_response_addenda_element_data_field_monitoring_data_element_value",
|
|
585
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDatum": ".service_note_get_v_1_response_addenda_element_data_field_monitoring_datum",
|
|
586
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessment": ".service_note_get_v_1_response_addenda_element_data_field_scored_assessment",
|
|
587
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessmentsElementType": ".service_note_get_v_1_response_addenda_element_data_field_scored_assessments_element_type",
|
|
588
|
+
"ServiceNoteGetV1ResponseAddendaElementSignature": ".service_note_get_v_1_response_addenda_element_signature",
|
|
589
|
+
"ServiceNoteGetV1ResponseAddendaElementSignatureFieldProvider": ".service_note_get_v_1_response_addenda_element_signature_field_provider",
|
|
590
|
+
"ServiceNoteGetV1ResponseAddendaElementSignatureFieldProviderFieldType": ".service_note_get_v_1_response_addenda_element_signature_field_provider_field_type",
|
|
591
|
+
"ServiceNoteGetV1ResponseAddendum": ".service_note_get_v_1_response_addendum",
|
|
592
|
+
"ServiceNoteGetV1ResponseData": ".service_note_get_v_1_response_data",
|
|
593
|
+
"ServiceNoteGetV1ResponseDataFieldAllergy": ".service_note_get_v_1_response_data_field_allergy",
|
|
594
|
+
"ServiceNoteGetV1ResponseDataFieldIcd10": ".service_note_get_v_1_response_data_field_icd_10",
|
|
595
|
+
"ServiceNoteGetV1ResponseDataFieldMedication": ".service_note_get_v_1_response_data_field_medication",
|
|
596
|
+
"ServiceNoteGetV1ResponseDataFieldMonitoringDataElementValue": ".service_note_get_v_1_response_data_field_monitoring_data_element_value",
|
|
597
|
+
"ServiceNoteGetV1ResponseDataFieldMonitoringDatum": ".service_note_get_v_1_response_data_field_monitoring_datum",
|
|
598
|
+
"ServiceNoteGetV1ResponseDataFieldScoredAssessment": ".service_note_get_v_1_response_data_field_scored_assessment",
|
|
599
|
+
"ServiceNoteGetV1ResponseDataFieldScoredAssessmentsElementType": ".service_note_get_v_1_response_data_field_scored_assessments_element_type",
|
|
600
|
+
"ServiceNoteGetV1ResponseSignature": ".service_note_get_v_1_response_signature",
|
|
601
|
+
"ServiceNoteGetV1ResponseSignatureFieldProvider": ".service_note_get_v_1_response_signature_field_provider",
|
|
602
|
+
"ServiceNoteGetV1ResponseSignatureFieldProviderFieldType": ".service_note_get_v_1_response_signature_field_provider_field_type",
|
|
603
|
+
"ServiceStreamV1Response": ".service_stream_v_1_response",
|
|
604
|
+
"ServiceStreamV1ResponseCancellationReason": ".service_stream_v_1_response_cancellation_reason",
|
|
605
|
+
"ServiceStreamV1ResponseClaimStatus": ".service_stream_v_1_response_claim_status",
|
|
606
|
+
"ServiceStreamV1ResponseCoverageStatus": ".service_stream_v_1_response_coverage_status",
|
|
607
|
+
"ServiceStreamV1ResponseLocation": ".service_stream_v_1_response_location",
|
|
608
|
+
"ServiceStreamV1ResponseLocationFieldCountry": ".service_stream_v_1_response_location_field_country",
|
|
609
|
+
"ServiceStreamV1ResponseLocationFieldState": ".service_stream_v_1_response_location_field_state",
|
|
610
|
+
"ServiceStreamV1ResponseMetadata": ".service_stream_v_1_response_metadata",
|
|
611
|
+
"ServiceStreamV1ResponsePatientResponsibility": ".service_stream_v_1_response_patient_responsibility",
|
|
612
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldAmount": ".service_stream_v_1_response_patient_responsibility_field_amount",
|
|
613
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType": ".service_stream_v_1_response_patient_responsibility_field_amount_field_deductible_type",
|
|
614
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldStatus": ".service_stream_v_1_response_patient_responsibility_field_status",
|
|
615
|
+
"ServiceStreamV1ResponsePayment": ".service_stream_v_1_response_payment",
|
|
616
|
+
"ServiceStreamV1ResponsePaymentsElementType": ".service_stream_v_1_response_payments_element_type",
|
|
617
|
+
"ServiceStreamV1ResponseProvider": ".service_stream_v_1_response_provider",
|
|
618
|
+
"ServiceStreamV1ResponseProviderFieldType": ".service_stream_v_1_response_provider_field_type",
|
|
619
|
+
"ServiceStreamV1ResponseResponsibleParty": ".service_stream_v_1_response_responsible_party",
|
|
620
|
+
"ServiceStreamV1ResponseServiceEligibility": ".service_stream_v_1_response_service_eligibility",
|
|
621
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfo": ".service_stream_v_1_response_service_eligibility_field_clinical_info",
|
|
622
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis": ".service_stream_v_1_response_service_eligibility_field_clinical_info_field_diagnosis",
|
|
623
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_condition",
|
|
624
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis",
|
|
625
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit",
|
|
626
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric",
|
|
627
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period",
|
|
628
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type",
|
|
629
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units",
|
|
630
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility",
|
|
631
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type",
|
|
632
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibility": ".service_stream_v_1_response_service_eligibility_field_conditional_patient_responsibility",
|
|
633
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldMessage": ".service_stream_v_1_response_service_eligibility_field_message",
|
|
634
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibility": ".service_stream_v_1_response_service_eligibility_field_patient_responsibility",
|
|
635
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType": ".service_stream_v_1_response_service_eligibility_field_patient_responsibility_field_deductible_type",
|
|
636
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPolicyId": ".service_stream_v_1_response_service_eligibility_field_policy_id",
|
|
637
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldProvider": ".service_stream_v_1_response_service_eligibility_field_provider",
|
|
638
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldProvidersElementType": ".service_stream_v_1_response_service_eligibility_field_providers_element_type",
|
|
639
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldState": ".service_stream_v_1_response_service_eligibility_field_state",
|
|
640
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldStatus": ".service_stream_v_1_response_service_eligibility_field_status",
|
|
641
|
+
"ServiceStreamV1ResponseServiceType": ".service_stream_v_1_response_service_type",
|
|
642
|
+
"ServiceStreamV1ResponseServiceTypeFieldNoteField": ".service_stream_v_1_response_service_type_field_note_field",
|
|
643
|
+
"ServiceStreamV1ResponseServiceTypeFieldPlaceOfService": ".service_stream_v_1_response_service_type_field_place_of_service",
|
|
644
|
+
"ServiceStreamV1ResponseServiceTypeFieldProviderType": ".service_stream_v_1_response_service_type_field_provider_type",
|
|
645
|
+
"ServiceStreamV1ResponseServiceTypeFieldProviderTypesElement": ".service_stream_v_1_response_service_type_field_provider_types_element",
|
|
646
|
+
"ServiceStreamV1ResponseStatus": ".service_stream_v_1_response_status",
|
|
647
|
+
"ServiceStreamV1ResponseTask": ".service_stream_v_1_response_task",
|
|
648
|
+
"ServiceStreamV1ResponseTasksElementType": ".service_stream_v_1_response_tasks_element_type",
|
|
649
|
+
"ServicesListV1FilterProviderId": ".services_list_v_1_filter_provider_id",
|
|
650
|
+
"ServicesListV1FilterStatus": ".services_list_v_1_filter_status",
|
|
651
|
+
"ServicesListV1FilterStatusElement": ".services_list_v_1_filter_status_element",
|
|
652
|
+
"ServicesListV1OrderCreatedAt": ".services_list_v_1_order_created_at",
|
|
653
|
+
"ServicesListV1Response": ".services_list_v_1_response",
|
|
654
|
+
"ServicesListV1ResponseItem": ".services_list_v_1_response_item",
|
|
655
|
+
"ServicesListV1ResponseItemCancellationReason": ".services_list_v_1_response_item_cancellation_reason",
|
|
656
|
+
"ServicesListV1ResponseItemClaimStatus": ".services_list_v_1_response_item_claim_status",
|
|
657
|
+
"ServicesListV1ResponseItemCoverageStatus": ".services_list_v_1_response_item_coverage_status",
|
|
658
|
+
"ServicesListV1ResponseItemLocation": ".services_list_v_1_response_item_location",
|
|
659
|
+
"ServicesListV1ResponseItemLocationFieldCountry": ".services_list_v_1_response_item_location_field_country",
|
|
660
|
+
"ServicesListV1ResponseItemLocationFieldState": ".services_list_v_1_response_item_location_field_state",
|
|
661
|
+
"ServicesListV1ResponseItemMetadata": ".services_list_v_1_response_item_metadata",
|
|
662
|
+
"ServicesListV1ResponseItemPatientResponsibility": ".services_list_v_1_response_item_patient_responsibility",
|
|
663
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldAmount": ".services_list_v_1_response_item_patient_responsibility_field_amount",
|
|
664
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldAmountFieldDeductibleType": ".services_list_v_1_response_item_patient_responsibility_field_amount_field_deductible_type",
|
|
665
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldStatus": ".services_list_v_1_response_item_patient_responsibility_field_status",
|
|
666
|
+
"ServicesListV1ResponseItemPayment": ".services_list_v_1_response_item_payment",
|
|
667
|
+
"ServicesListV1ResponseItemPaymentsElementType": ".services_list_v_1_response_item_payments_element_type",
|
|
668
|
+
"ServicesListV1ResponseItemProvider": ".services_list_v_1_response_item_provider",
|
|
669
|
+
"ServicesListV1ResponseItemProviderFieldType": ".services_list_v_1_response_item_provider_field_type",
|
|
670
|
+
"ServicesListV1ResponseItemResponsibleParty": ".services_list_v_1_response_item_responsible_party",
|
|
671
|
+
"ServicesListV1ResponseItemServiceEligibility": ".services_list_v_1_response_item_service_eligibility",
|
|
672
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfo": ".services_list_v_1_response_item_service_eligibility_field_clinical_info",
|
|
673
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfoFieldDiagnosis": ".services_list_v_1_response_item_service_eligibility_field_clinical_info_field_diagnosis",
|
|
674
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_condition",
|
|
675
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_conditions_element_diagnosis",
|
|
676
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit",
|
|
677
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_metric",
|
|
678
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_period",
|
|
679
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_type",
|
|
680
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_limit_field_units",
|
|
681
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility",
|
|
682
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibilities_element_patient_responsibility_field_deductible_type",
|
|
683
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibility": ".services_list_v_1_response_item_service_eligibility_field_conditional_patient_responsibility",
|
|
684
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldMessage": ".services_list_v_1_response_item_service_eligibility_field_message",
|
|
685
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibility": ".services_list_v_1_response_item_service_eligibility_field_patient_responsibility",
|
|
686
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibilityFieldDeductibleType": ".services_list_v_1_response_item_service_eligibility_field_patient_responsibility_field_deductible_type",
|
|
687
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPolicyId": ".services_list_v_1_response_item_service_eligibility_field_policy_id",
|
|
688
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldProvider": ".services_list_v_1_response_item_service_eligibility_field_provider",
|
|
689
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldProvidersElementType": ".services_list_v_1_response_item_service_eligibility_field_providers_element_type",
|
|
690
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldState": ".services_list_v_1_response_item_service_eligibility_field_state",
|
|
691
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldStatus": ".services_list_v_1_response_item_service_eligibility_field_status",
|
|
692
|
+
"ServicesListV1ResponseItemServiceType": ".services_list_v_1_response_item_service_type",
|
|
693
|
+
"ServicesListV1ResponseItemServiceTypeFieldNoteField": ".services_list_v_1_response_item_service_type_field_note_field",
|
|
694
|
+
"ServicesListV1ResponseItemServiceTypeFieldPlaceOfService": ".services_list_v_1_response_item_service_type_field_place_of_service",
|
|
695
|
+
"ServicesListV1ResponseItemServiceTypeFieldProviderType": ".services_list_v_1_response_item_service_type_field_provider_type",
|
|
696
|
+
"ServicesListV1ResponseItemServiceTypeFieldProviderTypesElement": ".services_list_v_1_response_item_service_type_field_provider_types_element",
|
|
697
|
+
"ServicesListV1ResponseItemStatus": ".services_list_v_1_response_item_status",
|
|
698
|
+
"ServicesListV1ResponseItemTask": ".services_list_v_1_response_item_task",
|
|
699
|
+
"ServicesListV1ResponseItemTasksElementType": ".services_list_v_1_response_item_tasks_element_type",
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
def __getattr__(attr_name: str) -> typing.Any:
|
|
704
|
+
module_name = _dynamic_imports.get(attr_name)
|
|
705
|
+
if module_name is None:
|
|
706
|
+
raise AttributeError(f"No {attr_name} found in _dynamic_imports for module name -> {__name__}")
|
|
707
|
+
try:
|
|
708
|
+
module = import_module(module_name, __package__)
|
|
709
|
+
if module_name == f".{attr_name}":
|
|
710
|
+
return module
|
|
711
|
+
else:
|
|
712
|
+
return getattr(module, attr_name)
|
|
713
|
+
except ImportError as e:
|
|
714
|
+
raise ImportError(f"Failed to import {attr_name} from {module_name}: {e}") from e
|
|
715
|
+
except AttributeError as e:
|
|
716
|
+
raise AttributeError(f"Failed to get {attr_name} from {module_name}: {e}") from e
|
|
717
|
+
|
|
718
|
+
|
|
719
|
+
def __dir__():
|
|
720
|
+
lazy_attrs = list(_dynamic_imports.keys())
|
|
721
|
+
return sorted(lazy_attrs)
|
|
722
|
+
|
|
723
|
+
|
|
724
|
+
__all__ = [
|
|
725
|
+
"ServiceCreateV1Request",
|
|
726
|
+
"ServiceCreateV1RequestLocation",
|
|
727
|
+
"ServiceCreateV1RequestLocationFieldCountry",
|
|
728
|
+
"ServiceCreateV1RequestLocationFieldState",
|
|
729
|
+
"ServiceCreateV1RequestMetadata",
|
|
730
|
+
"ServiceCreateV1RequestResponsibleParty",
|
|
731
|
+
"ServiceCreateV1RequestServiceEligibility",
|
|
732
|
+
"ServiceCreateV1RequestServiceEligibilityFieldClinicalInfo",
|
|
733
|
+
"ServiceCreateV1RequestServiceEligibilityFieldClinicalInfoFieldDiagnosis",
|
|
734
|
+
"ServiceCreateV1Response",
|
|
735
|
+
"ServiceCreateV1ResponseCancellationReason",
|
|
736
|
+
"ServiceCreateV1ResponseClaimStatus",
|
|
737
|
+
"ServiceCreateV1ResponseCoverageStatus",
|
|
738
|
+
"ServiceCreateV1ResponseLocation",
|
|
739
|
+
"ServiceCreateV1ResponseLocationFieldCountry",
|
|
740
|
+
"ServiceCreateV1ResponseLocationFieldState",
|
|
741
|
+
"ServiceCreateV1ResponseMetadata",
|
|
742
|
+
"ServiceCreateV1ResponsePatientResponsibility",
|
|
743
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldAmount",
|
|
744
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType",
|
|
745
|
+
"ServiceCreateV1ResponsePatientResponsibilityFieldStatus",
|
|
746
|
+
"ServiceCreateV1ResponsePayment",
|
|
747
|
+
"ServiceCreateV1ResponsePaymentsElementType",
|
|
748
|
+
"ServiceCreateV1ResponseProvider",
|
|
749
|
+
"ServiceCreateV1ResponseProviderFieldType",
|
|
750
|
+
"ServiceCreateV1ResponseResponsibleParty",
|
|
751
|
+
"ServiceCreateV1ResponseServiceEligibility",
|
|
752
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfo",
|
|
753
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis",
|
|
754
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition",
|
|
755
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis",
|
|
756
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit",
|
|
757
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric",
|
|
758
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod",
|
|
759
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType",
|
|
760
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits",
|
|
761
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility",
|
|
762
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType",
|
|
763
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldConditionalPatientResponsibility",
|
|
764
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldMessage",
|
|
765
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibility",
|
|
766
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType",
|
|
767
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldPolicyId",
|
|
768
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldProvider",
|
|
769
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldProvidersElementType",
|
|
770
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldState",
|
|
771
|
+
"ServiceCreateV1ResponseServiceEligibilityFieldStatus",
|
|
772
|
+
"ServiceCreateV1ResponseServiceType",
|
|
773
|
+
"ServiceCreateV1ResponseServiceTypeFieldNoteField",
|
|
774
|
+
"ServiceCreateV1ResponseServiceTypeFieldPlaceOfService",
|
|
775
|
+
"ServiceCreateV1ResponseServiceTypeFieldProviderType",
|
|
776
|
+
"ServiceCreateV1ResponseServiceTypeFieldProviderTypesElement",
|
|
777
|
+
"ServiceCreateV1ResponseStatus",
|
|
778
|
+
"ServiceCreateV1ResponseTask",
|
|
779
|
+
"ServiceCreateV1ResponseTasksElementType",
|
|
780
|
+
"ServiceGetV1Response",
|
|
781
|
+
"ServiceGetV1ResponseCancellationReason",
|
|
782
|
+
"ServiceGetV1ResponseClaimStatus",
|
|
783
|
+
"ServiceGetV1ResponseCoverageStatus",
|
|
784
|
+
"ServiceGetV1ResponseLocation",
|
|
785
|
+
"ServiceGetV1ResponseLocationFieldCountry",
|
|
786
|
+
"ServiceGetV1ResponseLocationFieldState",
|
|
787
|
+
"ServiceGetV1ResponseMetadata",
|
|
788
|
+
"ServiceGetV1ResponsePatientResponsibility",
|
|
789
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldAmount",
|
|
790
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType",
|
|
791
|
+
"ServiceGetV1ResponsePatientResponsibilityFieldStatus",
|
|
792
|
+
"ServiceGetV1ResponsePayment",
|
|
793
|
+
"ServiceGetV1ResponsePaymentsElementType",
|
|
794
|
+
"ServiceGetV1ResponseProvider",
|
|
795
|
+
"ServiceGetV1ResponseProviderFieldType",
|
|
796
|
+
"ServiceGetV1ResponseResponsibleParty",
|
|
797
|
+
"ServiceGetV1ResponseServiceEligibility",
|
|
798
|
+
"ServiceGetV1ResponseServiceEligibilityFieldClinicalInfo",
|
|
799
|
+
"ServiceGetV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis",
|
|
800
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition",
|
|
801
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis",
|
|
802
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit",
|
|
803
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric",
|
|
804
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod",
|
|
805
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType",
|
|
806
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits",
|
|
807
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility",
|
|
808
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType",
|
|
809
|
+
"ServiceGetV1ResponseServiceEligibilityFieldConditionalPatientResponsibility",
|
|
810
|
+
"ServiceGetV1ResponseServiceEligibilityFieldMessage",
|
|
811
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibility",
|
|
812
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType",
|
|
813
|
+
"ServiceGetV1ResponseServiceEligibilityFieldPolicyId",
|
|
814
|
+
"ServiceGetV1ResponseServiceEligibilityFieldProvider",
|
|
815
|
+
"ServiceGetV1ResponseServiceEligibilityFieldProvidersElementType",
|
|
816
|
+
"ServiceGetV1ResponseServiceEligibilityFieldState",
|
|
817
|
+
"ServiceGetV1ResponseServiceEligibilityFieldStatus",
|
|
818
|
+
"ServiceGetV1ResponseServiceType",
|
|
819
|
+
"ServiceGetV1ResponseServiceTypeFieldNoteField",
|
|
820
|
+
"ServiceGetV1ResponseServiceTypeFieldPlaceOfService",
|
|
821
|
+
"ServiceGetV1ResponseServiceTypeFieldProviderType",
|
|
822
|
+
"ServiceGetV1ResponseServiceTypeFieldProviderTypesElement",
|
|
823
|
+
"ServiceGetV1ResponseStatus",
|
|
824
|
+
"ServiceGetV1ResponseTask",
|
|
825
|
+
"ServiceGetV1ResponseTasksElementType",
|
|
826
|
+
"ServiceNoteGetV1Response",
|
|
827
|
+
"ServiceNoteGetV1ResponseAddendaElementData",
|
|
828
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldAllergy",
|
|
829
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldIcd10",
|
|
830
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMedication",
|
|
831
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDataElementValue",
|
|
832
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldMonitoringDatum",
|
|
833
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessment",
|
|
834
|
+
"ServiceNoteGetV1ResponseAddendaElementDataFieldScoredAssessmentsElementType",
|
|
835
|
+
"ServiceNoteGetV1ResponseAddendaElementSignature",
|
|
836
|
+
"ServiceNoteGetV1ResponseAddendaElementSignatureFieldProvider",
|
|
837
|
+
"ServiceNoteGetV1ResponseAddendaElementSignatureFieldProviderFieldType",
|
|
838
|
+
"ServiceNoteGetV1ResponseAddendum",
|
|
839
|
+
"ServiceNoteGetV1ResponseData",
|
|
840
|
+
"ServiceNoteGetV1ResponseDataFieldAllergy",
|
|
841
|
+
"ServiceNoteGetV1ResponseDataFieldIcd10",
|
|
842
|
+
"ServiceNoteGetV1ResponseDataFieldMedication",
|
|
843
|
+
"ServiceNoteGetV1ResponseDataFieldMonitoringDataElementValue",
|
|
844
|
+
"ServiceNoteGetV1ResponseDataFieldMonitoringDatum",
|
|
845
|
+
"ServiceNoteGetV1ResponseDataFieldScoredAssessment",
|
|
846
|
+
"ServiceNoteGetV1ResponseDataFieldScoredAssessmentsElementType",
|
|
847
|
+
"ServiceNoteGetV1ResponseSignature",
|
|
848
|
+
"ServiceNoteGetV1ResponseSignatureFieldProvider",
|
|
849
|
+
"ServiceNoteGetV1ResponseSignatureFieldProviderFieldType",
|
|
850
|
+
"ServiceStreamV1Response",
|
|
851
|
+
"ServiceStreamV1ResponseCancellationReason",
|
|
852
|
+
"ServiceStreamV1ResponseClaimStatus",
|
|
853
|
+
"ServiceStreamV1ResponseCoverageStatus",
|
|
854
|
+
"ServiceStreamV1ResponseLocation",
|
|
855
|
+
"ServiceStreamV1ResponseLocationFieldCountry",
|
|
856
|
+
"ServiceStreamV1ResponseLocationFieldState",
|
|
857
|
+
"ServiceStreamV1ResponseMetadata",
|
|
858
|
+
"ServiceStreamV1ResponsePatientResponsibility",
|
|
859
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldAmount",
|
|
860
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldAmountFieldDeductibleType",
|
|
861
|
+
"ServiceStreamV1ResponsePatientResponsibilityFieldStatus",
|
|
862
|
+
"ServiceStreamV1ResponsePayment",
|
|
863
|
+
"ServiceStreamV1ResponsePaymentsElementType",
|
|
864
|
+
"ServiceStreamV1ResponseProvider",
|
|
865
|
+
"ServiceStreamV1ResponseProviderFieldType",
|
|
866
|
+
"ServiceStreamV1ResponseResponsibleParty",
|
|
867
|
+
"ServiceStreamV1ResponseServiceEligibility",
|
|
868
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfo",
|
|
869
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldClinicalInfoFieldDiagnosis",
|
|
870
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition",
|
|
871
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis",
|
|
872
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit",
|
|
873
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric",
|
|
874
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod",
|
|
875
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType",
|
|
876
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits",
|
|
877
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility",
|
|
878
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType",
|
|
879
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldConditionalPatientResponsibility",
|
|
880
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldMessage",
|
|
881
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibility",
|
|
882
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPatientResponsibilityFieldDeductibleType",
|
|
883
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldPolicyId",
|
|
884
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldProvider",
|
|
885
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldProvidersElementType",
|
|
886
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldState",
|
|
887
|
+
"ServiceStreamV1ResponseServiceEligibilityFieldStatus",
|
|
888
|
+
"ServiceStreamV1ResponseServiceType",
|
|
889
|
+
"ServiceStreamV1ResponseServiceTypeFieldNoteField",
|
|
890
|
+
"ServiceStreamV1ResponseServiceTypeFieldPlaceOfService",
|
|
891
|
+
"ServiceStreamV1ResponseServiceTypeFieldProviderType",
|
|
892
|
+
"ServiceStreamV1ResponseServiceTypeFieldProviderTypesElement",
|
|
893
|
+
"ServiceStreamV1ResponseStatus",
|
|
894
|
+
"ServiceStreamV1ResponseTask",
|
|
895
|
+
"ServiceStreamV1ResponseTasksElementType",
|
|
896
|
+
"ServicesListV1FilterProviderId",
|
|
897
|
+
"ServicesListV1FilterStatus",
|
|
898
|
+
"ServicesListV1FilterStatusElement",
|
|
899
|
+
"ServicesListV1OrderCreatedAt",
|
|
900
|
+
"ServicesListV1Response",
|
|
901
|
+
"ServicesListV1ResponseItem",
|
|
902
|
+
"ServicesListV1ResponseItemCancellationReason",
|
|
903
|
+
"ServicesListV1ResponseItemClaimStatus",
|
|
904
|
+
"ServicesListV1ResponseItemCoverageStatus",
|
|
905
|
+
"ServicesListV1ResponseItemLocation",
|
|
906
|
+
"ServicesListV1ResponseItemLocationFieldCountry",
|
|
907
|
+
"ServicesListV1ResponseItemLocationFieldState",
|
|
908
|
+
"ServicesListV1ResponseItemMetadata",
|
|
909
|
+
"ServicesListV1ResponseItemPatientResponsibility",
|
|
910
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldAmount",
|
|
911
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldAmountFieldDeductibleType",
|
|
912
|
+
"ServicesListV1ResponseItemPatientResponsibilityFieldStatus",
|
|
913
|
+
"ServicesListV1ResponseItemPayment",
|
|
914
|
+
"ServicesListV1ResponseItemPaymentsElementType",
|
|
915
|
+
"ServicesListV1ResponseItemProvider",
|
|
916
|
+
"ServicesListV1ResponseItemProviderFieldType",
|
|
917
|
+
"ServicesListV1ResponseItemResponsibleParty",
|
|
918
|
+
"ServicesListV1ResponseItemServiceEligibility",
|
|
919
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfo",
|
|
920
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldClinicalInfoFieldDiagnosis",
|
|
921
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementCondition",
|
|
922
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementConditionsElementDiagnosis",
|
|
923
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimit",
|
|
924
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldMetric",
|
|
925
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldPeriod",
|
|
926
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldType",
|
|
927
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementLimitFieldUnits",
|
|
928
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibility",
|
|
929
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibilitiesElementPatientResponsibilityFieldDeductibleType",
|
|
930
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldConditionalPatientResponsibility",
|
|
931
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldMessage",
|
|
932
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibility",
|
|
933
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPatientResponsibilityFieldDeductibleType",
|
|
934
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldPolicyId",
|
|
935
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldProvider",
|
|
936
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldProvidersElementType",
|
|
937
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldState",
|
|
938
|
+
"ServicesListV1ResponseItemServiceEligibilityFieldStatus",
|
|
939
|
+
"ServicesListV1ResponseItemServiceType",
|
|
940
|
+
"ServicesListV1ResponseItemServiceTypeFieldNoteField",
|
|
941
|
+
"ServicesListV1ResponseItemServiceTypeFieldPlaceOfService",
|
|
942
|
+
"ServicesListV1ResponseItemServiceTypeFieldProviderType",
|
|
943
|
+
"ServicesListV1ResponseItemServiceTypeFieldProviderTypesElement",
|
|
944
|
+
"ServicesListV1ResponseItemStatus",
|
|
945
|
+
"ServicesListV1ResponseItemTask",
|
|
946
|
+
"ServicesListV1ResponseItemTasksElementType",
|
|
947
|
+
]
|