()
| 227 | } |
| 228 | |
| 229 | func (s *OrganizationSyncSettings) String() string { |
| 230 | if s.Mapping == nil { |
| 231 | s.Mapping = make(map[string][]uuid.UUID) |
| 232 | } |
| 233 | return runtimeconfig.JSONString(s) |
| 234 | } |
| 235 | |
| 236 | func (s *OrganizationSyncSettings) MarshalJSON() ([]byte, error) { |
| 237 | if s.Mapping == nil { |
nothing calls this directly
no test coverage detected