SetNillableSource sets the "source" field if the given value is not nil.
(s *string)
| 567 | |
| 568 | // SetNillableSource sets the "source" field if the given value is not nil. |
| 569 | func (euo *EntityUpdateOne) SetNillableSource(s *string) *EntityUpdateOne { |
| 570 | if s != nil { |
| 571 | euo.SetSource(*s) |
| 572 | } |
| 573 | return euo |
| 574 | } |
| 575 | |
| 576 | // SetSize sets the "size" field. |
| 577 | func (euo *EntityUpdateOne) SetSize(i int64) *EntityUpdateOne { |