How to update Memo of a Schedule

How do I update the Memo of a Schedule (not the Memo of the Schedule’s ScheduleWorkflowAction) via Go SDK? It doesn’t seem to provide such option: sdk-go/internal/schedule_client.go at v1.28.1 · temporalio/sdk-go · GitHub

Hi @ysl

There is a client.ScheduleUpdate method that will allow you to update the schedule.

See this example. I have not tested it but I think you should be able to set schedule.Description.Memo to the new values.

Antonio