SetNillableReferenceCount sets the "reference_count" field if the given value is not nil.
(i *int)
| 124 | |
| 125 | // SetNillableReferenceCount sets the "reference_count" field if the given value is not nil. |
| 126 | func (eu *EntityUpdate) SetNillableReferenceCount(i *int) *EntityUpdate { |
| 127 | if i != nil { |
| 128 | eu.SetReferenceCount(*i) |
| 129 | } |
| 130 | return eu |
| 131 | } |
| 132 | |
| 133 | // AddReferenceCount adds i to the "reference_count" field. |
| 134 | func (eu *EntityUpdate) AddReferenceCount(i int) *EntityUpdate { |
nothing calls this directly
no test coverage detected