SetNillableStoragePolicyFiles sets the "storage_policy_files" field if the given value is not nil.
(i *int)
| 1038 | |
| 1039 | // SetNillableStoragePolicyFiles sets the "storage_policy_files" field if the given value is not nil. |
| 1040 | func (fuo *FileUpdateOne) SetNillableStoragePolicyFiles(i *int) *FileUpdateOne { |
| 1041 | if i != nil { |
| 1042 | fuo.SetStoragePolicyFiles(*i) |
| 1043 | } |
| 1044 | return fuo |
| 1045 | } |
| 1046 | |
| 1047 | // ClearStoragePolicyFiles clears the value of the "storage_policy_files" field. |
| 1048 | func (fuo *FileUpdateOne) ClearStoragePolicyFiles() *FileUpdateOne { |
nothing calls this directly
no test coverage detected