How to get a list of languages to which a specific resource was translated?

Thank you for your attentive reply; the answer is No, I haven’t fully resolved my issue. Here’s some context. I am using the Python SDK. My goal is to extract a list of language codes of all translations available under a given project and resource slug. Here’s a my code:

if resource := project.fetch("resources").get(slug=resource_slug):
    it = tx_api.ResourceLanguageStats.filter(
        project=project, 
        resource=resource
    ).all()
    
    language_codes = []
    for tr in it:
        # trying to do something with 'tr' here
        # to get the tr's language codes...                

Now perhaps I missed something and ResourceLanguageStats is not the appropriate class to use. I don’t mind as long as I can get the data I am looking for…