To support this ```python await client.send_email( to=to, subject=subject, body=markdownBody, body_format=EmailBodyFormat.MARKDOWN, ) ``` instead of this ```python await client.send_email( SendEmail( to=to, subject=subject, body=markdownBody, body_format=EmailBodyFormat.MARKDOWN, ) ) ```