SetNillableMessage sets the "message" field if the given value is not nil.
(v *string)
| 82 | |
| 83 | // SetNillableMessage sets the "message" field if the given value is not nil. |
| 84 | func (_c *AlertCreate) SetNillableMessage(v *string) *AlertCreate { |
| 85 | if v != nil { |
| 86 | _c.SetMessage(*v) |
| 87 | } |
| 88 | return _c |
| 89 | } |
| 90 | |
| 91 | // SetEventsCount sets the "eventsCount" field. |
| 92 | func (_c *AlertCreate) SetEventsCount(v int32) *AlertCreate { |
nothing calls this directly
no test coverage detected