Hi @JanEbbing I saw you introduced a new DeeplClient classes which is supposed to be used instead of Translator. cf https://github.com/DeepLcom/deepl-php/commit/46b68a7807eff9c9f7d210375e3d8efec7480584 There is also a DeeplClientOptions class, but I don't see why it extends `TranslateTextOptions`. Shouldn't it extends `TranslatorOptions` instead ? In the same way I did ``` new Translator($apiKey, [TranslatorOptions::DEFAULT_MAX_RETRIES => 0]) ``` i would expect now to do ``` new DeepLClient($apiKey, [DeeplClientOptions::DEFAULT_MAX_RETRIES => 0]) ``` WDYT ?