Source code for tenor.types
[docs]class AspectRatio:
[docs] @staticmethod
def all():
return "all"
[docs] @staticmethod
def wide():
return "wide"
[docs] @staticmethod
def standard():
return "standard"
[docs]class ContentFilter:
[docs] @staticmethod
def off():
return "off"
[docs] @staticmethod
def low():
return "low"
[docs] @staticmethod
def medium():
return "medium"
[docs] @staticmethod
def high():
return "high"