SetNillableReferenceCount sets the "reference_count" field if the given value is not nil.
(i *int)
| 603 | |
| 604 | // SetNillableReferenceCount sets the "reference_count" field if the given value is not nil. |
| 605 | func (euo *EntityUpdateOne) SetNillableReferenceCount(i *int) *EntityUpdateOne { |
| 606 | if i != nil { |
| 607 | euo.SetReferenceCount(*i) |
| 608 | } |
| 609 | return euo |
| 610 | } |
| 611 | |
| 612 | // AddReferenceCount adds i to the "reference_count" field. |
| 613 | func (euo *EntityUpdateOne) AddReferenceCount(i int) *EntityUpdateOne { |
nothing calls this directly
no test coverage detected