When using any of the HolidayLists API I'm getting errors like the following:
AttributeError: 'ScheduleHolidaylistsIdHolidaysEndpoint' object has no attribute 'post'
HolidayListInfos API (eg. manage_api_client.schedule.holidaylists.info.get()) works correctly but HolidayLists API (eg. manage_api_client.schedule.holiday_lists.get()) does not.
I've tried with and without the underscore between holiday and lists.
I think this may stem from the fact that the API appears to have /schedule/holidaylists and /schedule/holidayLists/ doing different things, and where the code has been generated it has not allowed for the case difference.
When using any of the HolidayLists API I'm getting errors like the following:
AttributeError: 'ScheduleHolidaylistsIdHolidaysEndpoint' object has no attribute 'post'HolidayListInfos API (eg.
manage_api_client.schedule.holidaylists.info.get()) works correctly but HolidayLists API (eg.manage_api_client.schedule.holiday_lists.get()) does not.I've tried with and without the underscore between holiday and lists.
I think this may stem from the fact that the API appears to have
/schedule/holidaylistsand/schedule/holidayLists/doing different things, and where the code has been generated it has not allowed for the case difference.