Trouble with Daikin Integration

I’m using the daikin residential controler github plugin.
I’m currently writting up some automation (pretty new to this) for the upcoming heating period. Is it possible to retrieve the currently set temperature?
I have not understood how to retrieve all these attributes that can be changed with the “set_*” functions from the “climate” entity
I want to write an automation that sets the target temperature to -2, if I’m not at home.

I was able to figure it out,
The tricky part was the temperature, as the climate documentation from HA mentions target_temperature

template:
  - sensor:
      - name: "daikin_target_temperature"
        unit_of_measurement: "°C"
        state_class: "measurement"
        state: >
            {{ state_attr('climate.daikinapXXX', 'temperature') }}