(v string)
| 10 | } |
| 11 | |
| 12 | func NewOptionalString(v string) OptionalString { |
| 13 | return OptionalString{ |
| 14 | IsSet: true, |
| 15 | Value: v, |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | func (o *OptionalString) UnmarshalJSON(rawJSON []byte) error { |
| 20 | o.IsSet = true |
no outgoing calls
no test coverage detected