SetNillableFileChildren sets the "file_children" field if the given value is not nil.
(i *int)
| 111 | |
| 112 | // SetNillableFileChildren sets the "file_children" field if the given value is not nil. |
| 113 | func (fc *FileCreate) SetNillableFileChildren(i *int) *FileCreate { |
| 114 | if i != nil { |
| 115 | fc.SetFileChildren(*i) |
| 116 | } |
| 117 | return fc |
| 118 | } |
| 119 | |
| 120 | // SetIsSymbolic sets the "is_symbolic" field. |
| 121 | func (fc *FileCreate) SetIsSymbolic(b bool) *FileCreate { |
nothing calls this directly
no test coverage detected