@@ -7,9 +7,9 @@ Name | Type | Description | Notes
77** Category** | Pointer to [ ** SLOCorrectionCategory** ] ( SLOCorrectionCategory.md ) | | [ optional]
88** Creator** | Pointer to [ ** Creator** ] ( Creator.md ) | | [ optional]
99** Description** | Pointer to ** string** | Description of the correction being made. | [ optional]
10- ** Duration** | Pointer to ** int64 ** | Length of time (in seconds) for a specified ` ; rrule` ; recurring SLO correction. | [ optional]
10+ ** Duration** | Pointer to ** NullableInt64 ** | Length of time (in seconds) for a specified ` ; rrule` ; recurring SLO correction. | [ optional]
1111** End** | Pointer to ** int64** | Ending time of the correction in epoch seconds. | [ optional]
12- ** Rrule** | Pointer to ** string ** | Recurrence rules as defined in the iCalendar RFC 5545. | [ optional]
12+ ** Rrule** | Pointer to ** NullableString ** | Recurrence rules as defined in the iCalendar RFC 5545. | [ optional]
1313** SloId** | Pointer to ** string** | ID of the SLO that this correction will be applied to. | [ optional]
1414** Start** | Pointer to ** int64** | Starting time of the correction in epoch seconds. | [ optional]
1515** Timezone** | Pointer to ** string** | The timezone to display in the UI for the correction times (defaults to \& quot;UTC\& quot;). | [ optional]
@@ -133,6 +133,16 @@ SetDuration sets Duration field to given value.
133133
134134HasDuration returns a boolean if a field has been set.
135135
136+ ### SetDurationNil
137+
138+ ` func (o *SLOCorrectionResponseAttributes) SetDurationNil(b bool) `
139+
140+ SetDurationNil sets the value for Duration to be an explicit nil
141+
142+ ### UnsetDuration
143+ ` func (o *SLOCorrectionResponseAttributes) UnsetDuration() `
144+
145+ UnsetDuration ensures that no value is present for Duration, not even an explicit nil
136146### GetEnd
137147
138148` func (o *SLOCorrectionResponseAttributes) GetEnd() int64 `
@@ -183,6 +193,16 @@ SetRrule sets Rrule field to given value.
183193
184194HasRrule returns a boolean if a field has been set.
185195
196+ ### SetRruleNil
197+
198+ ` func (o *SLOCorrectionResponseAttributes) SetRruleNil(b bool) `
199+
200+ SetRruleNil sets the value for Rrule to be an explicit nil
201+
202+ ### UnsetRrule
203+ ` func (o *SLOCorrectionResponseAttributes) UnsetRrule() `
204+
205+ UnsetRrule ensures that no value is present for Rrule, not even an explicit nil
186206### GetSloId
187207
188208` func (o *SLOCorrectionResponseAttributes) GetSloId() string `
0 commit comments