Hello there,
I'm hoping that someone could shed light on the below; it seems that Enum values (`DISCOVERY_MULTI_ASSET_AD = 35, DISCOVERY_CAROUSEL_AD = 36`)
documented in the v10 API are not appearing:
```
ad_types = client.get_type('AdTypeEnum')
values = set(ad_type.value for ad_type in ad_types.AdType)
print(values)
>> {0, 1, 2, 3, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 33, 34}
```
Thanks!