()
| 58 | } |
| 59 | |
| 60 | func (d *NullableDuration) Minutes() *int { |
| 61 | if d.Duration != nil { |
| 62 | retentionMinutes := int(d.Duration.Minutes()) |
| 63 | return &retentionMinutes |
| 64 | } |
| 65 | |
| 66 | return nil |
| 67 | } |
| 68 | |
| 69 | type createOptions struct { |
| 70 | repo string |
no outgoing calls
no test coverage detected