bunnyshell.com/sdk@v0.16.0/docs/EventCollection.md (about) 1 # EventCollection 2 3 ## Properties 4 5 Name | Type | Description | Notes 6 ------------ | ------------- | ------------- | ------------- 7 **Id** | Pointer to **string** | Event identifier. | [optional] [readonly] 8 **Type** | Pointer to **string** | Event type. | [optional] [readonly] 9 **Status** | Pointer to **string** | Event operation status. | [optional] [readonly] 10 **Environment** | Pointer to **NullableString** | Environment identifier. | [optional] [readonly] 11 **Organization** | Pointer to **string** | Organization identifier. | [optional] [readonly] 12 13 ## Methods 14 15 ### NewEventCollection 16 17 `func NewEventCollection() *EventCollection` 18 19 NewEventCollection instantiates a new EventCollection object 20 This constructor will assign default values to properties that have it defined, 21 and makes sure properties required by API are set, but the set of arguments 22 will change when the set of required properties is changed 23 24 ### NewEventCollectionWithDefaults 25 26 `func NewEventCollectionWithDefaults() *EventCollection` 27 28 NewEventCollectionWithDefaults instantiates a new EventCollection object 29 This constructor will only assign default values to properties that have it defined, 30 but it doesn't guarantee that properties required by API are set 31 32 ### GetId 33 34 `func (o *EventCollection) GetId() string` 35 36 GetId returns the Id field if non-nil, zero value otherwise. 37 38 ### GetIdOk 39 40 `func (o *EventCollection) GetIdOk() (*string, bool)` 41 42 GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise 43 and a boolean to check if the value has been set. 44 45 ### SetId 46 47 `func (o *EventCollection) SetId(v string)` 48 49 SetId sets Id field to given value. 50 51 ### HasId 52 53 `func (o *EventCollection) HasId() bool` 54 55 HasId returns a boolean if a field has been set. 56 57 ### GetType 58 59 `func (o *EventCollection) GetType() string` 60 61 GetType returns the Type field if non-nil, zero value otherwise. 62 63 ### GetTypeOk 64 65 `func (o *EventCollection) GetTypeOk() (*string, bool)` 66 67 GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise 68 and a boolean to check if the value has been set. 69 70 ### SetType 71 72 `func (o *EventCollection) SetType(v string)` 73 74 SetType sets Type field to given value. 75 76 ### HasType 77 78 `func (o *EventCollection) HasType() bool` 79 80 HasType returns a boolean if a field has been set. 81 82 ### GetStatus 83 84 `func (o *EventCollection) GetStatus() string` 85 86 GetStatus returns the Status field if non-nil, zero value otherwise. 87 88 ### GetStatusOk 89 90 `func (o *EventCollection) GetStatusOk() (*string, bool)` 91 92 GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise 93 and a boolean to check if the value has been set. 94 95 ### SetStatus 96 97 `func (o *EventCollection) SetStatus(v string)` 98 99 SetStatus sets Status field to given value. 100 101 ### HasStatus 102 103 `func (o *EventCollection) HasStatus() bool` 104 105 HasStatus returns a boolean if a field has been set. 106 107 ### GetEnvironment 108 109 `func (o *EventCollection) GetEnvironment() string` 110 111 GetEnvironment returns the Environment field if non-nil, zero value otherwise. 112 113 ### GetEnvironmentOk 114 115 `func (o *EventCollection) GetEnvironmentOk() (*string, bool)` 116 117 GetEnvironmentOk returns a tuple with the Environment field if it's non-nil, zero value otherwise 118 and a boolean to check if the value has been set. 119 120 ### SetEnvironment 121 122 `func (o *EventCollection) SetEnvironment(v string)` 123 124 SetEnvironment sets Environment field to given value. 125 126 ### HasEnvironment 127 128 `func (o *EventCollection) HasEnvironment() bool` 129 130 HasEnvironment returns a boolean if a field has been set. 131 132 ### SetEnvironmentNil 133 134 `func (o *EventCollection) SetEnvironmentNil(b bool)` 135 136 SetEnvironmentNil sets the value for Environment to be an explicit nil 137 138 ### UnsetEnvironment 139 `func (o *EventCollection) UnsetEnvironment()` 140 141 UnsetEnvironment ensures that no value is present for Environment, not even an explicit nil 142 ### GetOrganization 143 144 `func (o *EventCollection) GetOrganization() string` 145 146 GetOrganization returns the Organization field if non-nil, zero value otherwise. 147 148 ### GetOrganizationOk 149 150 `func (o *EventCollection) GetOrganizationOk() (*string, bool)` 151 152 GetOrganizationOk returns a tuple with the Organization field if it's non-nil, zero value otherwise 153 and a boolean to check if the value has been set. 154 155 ### SetOrganization 156 157 `func (o *EventCollection) SetOrganization(v string)` 158 159 SetOrganization sets Organization field to given value. 160 161 ### HasOrganization 162 163 `func (o *EventCollection) HasOrganization() bool` 164 165 HasOrganization returns a boolean if a field has been set. 166 167 168 [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) 169 170