|
2 | 2 |
|
3 | 3 | ## Properties |
4 | 4 |
|
5 | | -| Name | Type | Description | Notes | |
6 | | -| ---------------- | ---------------------------------------------------------- | ----------------------------------------- | ---------- | |
7 | | -| **AllowFailure** | Pointer to **bool** | A boolean set to allow this step to fail. | [optional] | |
8 | | -| **Name** | Pointer to **string** | The name of the step. | [optional] | |
9 | | -| **Params** | Pointer to **interface{}** | The parameters of the step. | [optional] | |
10 | | -| **Timeout** | Pointer to **int64** | The time before declaring a step failed. | [optional] | |
11 | | -| **Type** | Pointer to [**SyntheticsStepType**](SyntheticsStepType.md) | | [optional] | |
| 5 | +| Name | Type | Description | Notes | |
| 6 | +| ---------------- | ---------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------- | ---------- | |
| 7 | +| **AllowFailure** | Pointer to **bool** | A boolean set to allow this step to fail. | [optional] | |
| 8 | +| **IsCritical** | Pointer to **bool** | A boolean to use in addition to `allowFailure` to determine if the test should be marked as failed when the step fails. | [optional] | |
| 9 | +| **Name** | Pointer to **string** | The name of the step. | [optional] | |
| 10 | +| **Params** | Pointer to **interface{}** | The parameters of the step. | [optional] | |
| 11 | +| **Timeout** | Pointer to **int64** | The time before declaring a step failed. | [optional] | |
| 12 | +| **Type** | Pointer to [**SyntheticsStepType**](SyntheticsStepType.md) | | [optional] | |
12 | 13 |
|
13 | 14 | ## Methods |
14 | 15 |
|
@@ -54,6 +55,31 @@ SetAllowFailure sets AllowFailure field to given value. |
54 | 55 |
|
55 | 56 | HasAllowFailure returns a boolean if a field has been set. |
56 | 57 |
|
| 58 | +### GetIsCritical |
| 59 | + |
| 60 | +`func (o *SyntheticsStep) GetIsCritical() bool` |
| 61 | + |
| 62 | +GetIsCritical returns the IsCritical field if non-nil, zero value otherwise. |
| 63 | + |
| 64 | +### GetIsCriticalOk |
| 65 | + |
| 66 | +`func (o *SyntheticsStep) GetIsCriticalOk() (*bool, bool)` |
| 67 | + |
| 68 | +GetIsCriticalOk returns a tuple with the IsCritical field if it's non-nil, zero value otherwise |
| 69 | +and a boolean to check if the value has been set. |
| 70 | + |
| 71 | +### SetIsCritical |
| 72 | + |
| 73 | +`func (o *SyntheticsStep) SetIsCritical(v bool)` |
| 74 | + |
| 75 | +SetIsCritical sets IsCritical field to given value. |
| 76 | + |
| 77 | +### HasIsCritical |
| 78 | + |
| 79 | +`func (o *SyntheticsStep) HasIsCritical() bool` |
| 80 | + |
| 81 | +HasIsCritical returns a boolean if a field has been set. |
| 82 | + |
57 | 83 | ### GetName |
58 | 84 |
|
59 | 85 | `func (o *SyntheticsStep) GetName() string` |
|
0 commit comments