public sealed class MonthlySchedule : IMessage<MonthlySchedule>, IEquatable<MonthlySchedule>, IDeepCloneable<MonthlySchedule>, IBufferMessage, IMessage
Represents a monthly schedule. An example of a valid monthly schedule is
"on the third Tuesday of the month" or "on the 15th of the month".
Required. One day of the month. 1-31 indicates the 1st to the 31st day.
-1 indicates the last day of the month. Months without the target day
will be skipped. For example, a schedule to run "every month on the 31st"
will not run in February, April, June, etc.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["The latest version available for `MonthlySchedule` is 2.4.0, with multiple other versions available, ranging down to 1.3.0."],["`MonthlySchedule` is a class representing a schedule that occurs monthly, such as \"on the third Tuesday\" or \"on the 15th\"."],["The `MonthlySchedule` class has inheritance from Object, and implements multiple interfaces including `IMessage`, `IEquatable`, `IDeepCloneable`, and `IBufferMessage`."],["Key properties of the `MonthlySchedule` class include `DayOfMonthCase`, `MonthDay` which specifies a day of the month (1-31, or -1 for the last day), and `WeekDayOfMonth` for specifying a weekday within the month."],["There are two constructors available for `MonthlySchedule`, a default constructor, and a copy constructor that takes another `MonthlySchedule` instance."]]],[]]