MQTT Cover to Google Assistant

Ok so i tried to configure an mqtt cover which communicates with a plc that sends back the state commands (open, closed, opening, closing, stopped). Everything works fine Home Assistant sends the payload the PLC accepts it and sends back the state. Problem is, if i try to configure Google Assistant I cant get a simple UP, DOWN and STOP view like in Home Assistant. Ive included the screenshot from the Google App. Also here is the code for the MQTT cover:

So basically i would just like to have a simple UP, DOWN and STOP option in Google Assistant. Is it possible? Thank you all.

  • name: “MQTT Cover”
    unique_id: cover_tenda
    command_topic: “lkuhinja/tenda”
    state_topic: “lkuhinja/tenda/state”
    position_open: 100
    position_closed: 0
    payload_open: “1”
    payload_close: “2”
    payload_stop: “0”
    state_open: “open”
    state_closed: “closed”
    state_opening: “opening”
    state_closing: “closing”
    payload_available: “online”
    payload_not_available: “offline”
    optimistic: true
    retain: false