|
4 | 4 |
|
5 | 5 | Name | Type | Description | Notes
|
6 | 6 | ------------ | ------------- | ------------- | -------------
|
7 |
| -**Type** | **string** | | |
| 7 | +**Type** | Pointer to **string** | | [optional] |
| 8 | +**Date** | Pointer to **time.Time** | | [optional] |
8 | 9 | **Regex** | Pointer to **string** | | [optional]
|
9 | 10 | **Data** | Pointer to **[]string** | | [optional]
|
10 | 11 |
|
11 | 12 | ## Methods
|
12 | 13 |
|
13 | 14 | ### NewFilterAny
|
14 | 15 |
|
15 |
| -`func NewFilterAny(type_ string, ) *FilterAny` |
| 16 | +`func NewFilterAny() *FilterAny` |
16 | 17 |
|
17 | 18 | NewFilterAny instantiates a new FilterAny object
|
18 | 19 | This constructor will assign default values to properties that have it defined,
|
@@ -46,6 +47,36 @@ and a boolean to check if the value has been set.
|
46 | 47 |
|
47 | 48 | SetType sets Type field to given value.
|
48 | 49 |
|
| 50 | +### HasType |
| 51 | + |
| 52 | +`func (o *FilterAny) HasType() bool` |
| 53 | + |
| 54 | +HasType returns a boolean if a field has been set. |
| 55 | + |
| 56 | +### GetDate |
| 57 | + |
| 58 | +`func (o *FilterAny) GetDate() time.Time` |
| 59 | + |
| 60 | +GetDate returns the Date field if non-nil, zero value otherwise. |
| 61 | + |
| 62 | +### GetDateOk |
| 63 | + |
| 64 | +`func (o *FilterAny) GetDateOk() (*time.Time, bool)` |
| 65 | + |
| 66 | +GetDateOk returns a tuple with the Date field if it's non-nil, zero value otherwise |
| 67 | +and a boolean to check if the value has been set. |
| 68 | + |
| 69 | +### SetDate |
| 70 | + |
| 71 | +`func (o *FilterAny) SetDate(v time.Time)` |
| 72 | + |
| 73 | +SetDate sets Date field to given value. |
| 74 | + |
| 75 | +### HasDate |
| 76 | + |
| 77 | +`func (o *FilterAny) HasDate() bool` |
| 78 | + |
| 79 | +HasDate returns a boolean if a field has been set. |
49 | 80 |
|
50 | 81 | ### GetRegex
|
51 | 82 |
|
|
0 commit comments