-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
610 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,212 @@ | ||
# EventEventLogImpl | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**CreatedAt** | Pointer to **string** | | [optional] | ||
**Detail** | Pointer to **map[string]interface{}** | | [optional] | ||
**Id** | Pointer to **string** | | [optional] | ||
**Level** | Pointer to **string** | | [optional] | ||
**Message** | Pointer to **string** | | [optional] | ||
**ProcessId** | Pointer to **string** | | [optional] | ||
**StructVersion** | Pointer to **string** | | [optional] | ||
|
||
## Methods | ||
|
||
### NewEventEventLogImpl | ||
|
||
`func NewEventEventLogImpl() *EventEventLogImpl` | ||
|
||
NewEventEventLogImpl instantiates a new EventEventLogImpl object | ||
This constructor will assign default values to properties that have it defined, | ||
and makes sure properties required by API are set, but the set of arguments | ||
will change when the set of required properties is changed | ||
|
||
### NewEventEventLogImplWithDefaults | ||
|
||
`func NewEventEventLogImplWithDefaults() *EventEventLogImpl` | ||
|
||
NewEventEventLogImplWithDefaults instantiates a new EventEventLogImpl object | ||
This constructor will only assign default values to properties that have it defined, | ||
but it doesn't guarantee that properties required by API are set | ||
|
||
### GetCreatedAt | ||
|
||
`func (o *EventEventLogImpl) GetCreatedAt() string` | ||
|
||
GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. | ||
|
||
### GetCreatedAtOk | ||
|
||
`func (o *EventEventLogImpl) GetCreatedAtOk() (*string, bool)` | ||
|
||
GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetCreatedAt | ||
|
||
`func (o *EventEventLogImpl) SetCreatedAt(v string)` | ||
|
||
SetCreatedAt sets CreatedAt field to given value. | ||
|
||
### HasCreatedAt | ||
|
||
`func (o *EventEventLogImpl) HasCreatedAt() bool` | ||
|
||
HasCreatedAt returns a boolean if a field has been set. | ||
|
||
### GetDetail | ||
|
||
`func (o *EventEventLogImpl) GetDetail() map[string]interface{}` | ||
|
||
GetDetail returns the Detail field if non-nil, zero value otherwise. | ||
|
||
### GetDetailOk | ||
|
||
`func (o *EventEventLogImpl) GetDetailOk() (*map[string]interface{}, bool)` | ||
|
||
GetDetailOk returns a tuple with the Detail field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetDetail | ||
|
||
`func (o *EventEventLogImpl) SetDetail(v map[string]interface{})` | ||
|
||
SetDetail sets Detail field to given value. | ||
|
||
### HasDetail | ||
|
||
`func (o *EventEventLogImpl) HasDetail() bool` | ||
|
||
HasDetail returns a boolean if a field has been set. | ||
|
||
### GetId | ||
|
||
`func (o *EventEventLogImpl) GetId() string` | ||
|
||
GetId returns the Id field if non-nil, zero value otherwise. | ||
|
||
### GetIdOk | ||
|
||
`func (o *EventEventLogImpl) GetIdOk() (*string, bool)` | ||
|
||
GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetId | ||
|
||
`func (o *EventEventLogImpl) SetId(v string)` | ||
|
||
SetId sets Id field to given value. | ||
|
||
### HasId | ||
|
||
`func (o *EventEventLogImpl) HasId() bool` | ||
|
||
HasId returns a boolean if a field has been set. | ||
|
||
### GetLevel | ||
|
||
`func (o *EventEventLogImpl) GetLevel() string` | ||
|
||
GetLevel returns the Level field if non-nil, zero value otherwise. | ||
|
||
### GetLevelOk | ||
|
||
`func (o *EventEventLogImpl) GetLevelOk() (*string, bool)` | ||
|
||
GetLevelOk returns a tuple with the Level field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetLevel | ||
|
||
`func (o *EventEventLogImpl) SetLevel(v string)` | ||
|
||
SetLevel sets Level field to given value. | ||
|
||
### HasLevel | ||
|
||
`func (o *EventEventLogImpl) HasLevel() bool` | ||
|
||
HasLevel returns a boolean if a field has been set. | ||
|
||
### GetMessage | ||
|
||
`func (o *EventEventLogImpl) GetMessage() string` | ||
|
||
GetMessage returns the Message field if non-nil, zero value otherwise. | ||
|
||
### GetMessageOk | ||
|
||
`func (o *EventEventLogImpl) GetMessageOk() (*string, bool)` | ||
|
||
GetMessageOk returns a tuple with the Message field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetMessage | ||
|
||
`func (o *EventEventLogImpl) SetMessage(v string)` | ||
|
||
SetMessage sets Message field to given value. | ||
|
||
### HasMessage | ||
|
||
`func (o *EventEventLogImpl) HasMessage() bool` | ||
|
||
HasMessage returns a boolean if a field has been set. | ||
|
||
### GetProcessId | ||
|
||
`func (o *EventEventLogImpl) GetProcessId() string` | ||
|
||
GetProcessId returns the ProcessId field if non-nil, zero value otherwise. | ||
|
||
### GetProcessIdOk | ||
|
||
`func (o *EventEventLogImpl) GetProcessIdOk() (*string, bool)` | ||
|
||
GetProcessIdOk returns a tuple with the ProcessId field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetProcessId | ||
|
||
`func (o *EventEventLogImpl) SetProcessId(v string)` | ||
|
||
SetProcessId sets ProcessId field to given value. | ||
|
||
### HasProcessId | ||
|
||
`func (o *EventEventLogImpl) HasProcessId() bool` | ||
|
||
HasProcessId returns a boolean if a field has been set. | ||
|
||
### GetStructVersion | ||
|
||
`func (o *EventEventLogImpl) GetStructVersion() string` | ||
|
||
GetStructVersion returns the StructVersion field if non-nil, zero value otherwise. | ||
|
||
### GetStructVersionOk | ||
|
||
`func (o *EventEventLogImpl) GetStructVersionOk() (*string, bool)` | ||
|
||
GetStructVersionOk returns a tuple with the StructVersion field if it's non-nil, zero value otherwise | ||
and a boolean to check if the value has been set. | ||
|
||
### SetStructVersion | ||
|
||
`func (o *EventEventLogImpl) SetStructVersion(v string)` | ||
|
||
SetStructVersion sets StructVersion field to given value. | ||
|
||
### HasStructVersion | ||
|
||
`func (o *EventEventLogImpl) HasStructVersion() bool` | ||
|
||
HasStructVersion returns a boolean if a field has been set. | ||
|
||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.