Reference model_name variable from config portion of model file in macro FROM ref{{ clause

Hi! I am wondering if it is possible to reference the model name from the model file config portion in the macro. The source table name is different on the model level, so it make sense to specify it in the config, and write macro using the variable name, so it can be used on all models. However, the format for the model should be as follows: {{ ref(‘model_name’) }}, so when I use the variable it is not adding the quotes, and doesn’t compile correctly.
Config:
{{
config(
materialized=‘incremental’,
incremental_strategy=‘delete+insert’,
unique_key=‘unique_key’,
tags=“incremental”,
source_date_column=“balance_date”,
target_date_column=“balance_date”,
source_date_table=“asset_accounts_transactions”
)
}}

Macro(one of the options that I tried and that is not working):

{% macro incremental_condition (report_hour=0, date_offset_hour=0) %}

{%- set source_date_column = config.require(‘source_date_column’) -%}
{%- set target_date_column = config.require(‘target_date_column’) -%}
{%- set source_date_table = “{{ ref('” + config.require(‘source_date_table’) + "') }} "-%}

WHERE

{% if is_incremental() %}

DATEADD(HOUR, {{report_hour}}, DATE(DATEADD(HOUR, {{date_offset_hour}}, {{source_date_column}} ))) > (
    SELECT MAX( {{target_date_column}} ) - {{ var('incremental_lookback_days') }} FROM {{ this }}

    )

{% else %}

{{source_date_column}} >= (
    SELECT MIN( {{source_date_column}} ) FROM {{source_date_table}}

{% endif %}

{%- endmacro -%}

Is there a specific syntax for {{source_date_table}} ? So it adds the full path for the model schema.db_name.model_name ?