Files
authentik/packages/client-go/model_event.go
Marc 'risson' Schmitt 2f70351c90 packages/client-go: init (#21139)
* packages/client-go: init

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>

* format

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* remove mod/sum

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix translate

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* no go replace

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* update rust makefile with pwd

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>

* fix build

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix docs

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* don't need a version ig?

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* exclude go client from cspell

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix main docker build

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
2026-03-25 15:26:50 +01:00

452 lines
11 KiB
Go
Generated

/*
authentik
Making authentication simple.
API version: 2026.5.0-rc1
Contact: hello@goauthentik.io
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package api
import (
"encoding/json"
"fmt"
"time"
)
// checks if the Event type satisfies the MappedNullable interface at compile time
var _ MappedNullable = &Event{}
// Event Event Serializer
type Event struct {
Pk string `json:"pk"`
User map[string]interface{} `json:"user,omitempty"`
Action EventActions `json:"action"`
App string `json:"app"`
Context map[string]interface{} `json:"context,omitempty"`
ClientIp NullableString `json:"client_ip,omitempty"`
Created time.Time `json:"created"`
Expires *time.Time `json:"expires,omitempty"`
Brand map[string]interface{} `json:"brand,omitempty"`
AdditionalProperties map[string]interface{}
}
type _Event Event
// NewEvent instantiates a new Event 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
func NewEvent(pk string, action EventActions, app string, created time.Time) *Event {
this := Event{}
this.Pk = pk
this.Action = action
this.App = app
this.Created = created
return &this
}
// NewEventWithDefaults instantiates a new Event 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
func NewEventWithDefaults() *Event {
this := Event{}
return &this
}
// GetPk returns the Pk field value
func (o *Event) GetPk() string {
if o == nil {
var ret string
return ret
}
return o.Pk
}
// GetPkOk returns a tuple with the Pk field value
// and a boolean to check if the value has been set.
func (o *Event) GetPkOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.Pk, true
}
// SetPk sets field value
func (o *Event) SetPk(v string) {
o.Pk = v
}
// GetUser returns the User field value if set, zero value otherwise.
func (o *Event) GetUser() map[string]interface{} {
if o == nil || IsNil(o.User) {
var ret map[string]interface{}
return ret
}
return o.User
}
// GetUserOk returns a tuple with the User field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Event) GetUserOk() (map[string]interface{}, bool) {
if o == nil || IsNil(o.User) {
return map[string]interface{}{}, false
}
return o.User, true
}
// HasUser returns a boolean if a field has been set.
func (o *Event) HasUser() bool {
if o != nil && !IsNil(o.User) {
return true
}
return false
}
// SetUser gets a reference to the given map[string]interface{} and assigns it to the User field.
func (o *Event) SetUser(v map[string]interface{}) {
o.User = v
}
// GetAction returns the Action field value
func (o *Event) GetAction() EventActions {
if o == nil {
var ret EventActions
return ret
}
return o.Action
}
// GetActionOk returns a tuple with the Action field value
// and a boolean to check if the value has been set.
func (o *Event) GetActionOk() (*EventActions, bool) {
if o == nil {
return nil, false
}
return &o.Action, true
}
// SetAction sets field value
func (o *Event) SetAction(v EventActions) {
o.Action = v
}
// GetApp returns the App field value
func (o *Event) GetApp() string {
if o == nil {
var ret string
return ret
}
return o.App
}
// GetAppOk returns a tuple with the App field value
// and a boolean to check if the value has been set.
func (o *Event) GetAppOk() (*string, bool) {
if o == nil {
return nil, false
}
return &o.App, true
}
// SetApp sets field value
func (o *Event) SetApp(v string) {
o.App = v
}
// GetContext returns the Context field value if set, zero value otherwise.
func (o *Event) GetContext() map[string]interface{} {
if o == nil || IsNil(o.Context) {
var ret map[string]interface{}
return ret
}
return o.Context
}
// GetContextOk returns a tuple with the Context field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Event) GetContextOk() (map[string]interface{}, bool) {
if o == nil || IsNil(o.Context) {
return map[string]interface{}{}, false
}
return o.Context, true
}
// HasContext returns a boolean if a field has been set.
func (o *Event) HasContext() bool {
if o != nil && !IsNil(o.Context) {
return true
}
return false
}
// SetContext gets a reference to the given map[string]interface{} and assigns it to the Context field.
func (o *Event) SetContext(v map[string]interface{}) {
o.Context = v
}
// GetClientIp returns the ClientIp field value if set, zero value otherwise (both if not set or set to explicit null).
func (o *Event) GetClientIp() string {
if o == nil || IsNil(o.ClientIp.Get()) {
var ret string
return ret
}
return *o.ClientIp.Get()
}
// GetClientIpOk returns a tuple with the ClientIp field value if set, nil otherwise
// and a boolean to check if the value has been set.
// NOTE: If the value is an explicit nil, `nil, true` will be returned
func (o *Event) GetClientIpOk() (*string, bool) {
if o == nil {
return nil, false
}
return o.ClientIp.Get(), o.ClientIp.IsSet()
}
// HasClientIp returns a boolean if a field has been set.
func (o *Event) HasClientIp() bool {
if o != nil && o.ClientIp.IsSet() {
return true
}
return false
}
// SetClientIp gets a reference to the given NullableString and assigns it to the ClientIp field.
func (o *Event) SetClientIp(v string) {
o.ClientIp.Set(&v)
}
// SetClientIpNil sets the value for ClientIp to be an explicit nil
func (o *Event) SetClientIpNil() {
o.ClientIp.Set(nil)
}
// UnsetClientIp ensures that no value is present for ClientIp, not even an explicit nil
func (o *Event) UnsetClientIp() {
o.ClientIp.Unset()
}
// GetCreated returns the Created field value
func (o *Event) GetCreated() time.Time {
if o == nil {
var ret time.Time
return ret
}
return o.Created
}
// GetCreatedOk returns a tuple with the Created field value
// and a boolean to check if the value has been set.
func (o *Event) GetCreatedOk() (*time.Time, bool) {
if o == nil {
return nil, false
}
return &o.Created, true
}
// SetCreated sets field value
func (o *Event) SetCreated(v time.Time) {
o.Created = v
}
// GetExpires returns the Expires field value if set, zero value otherwise.
func (o *Event) GetExpires() time.Time {
if o == nil || IsNil(o.Expires) {
var ret time.Time
return ret
}
return *o.Expires
}
// GetExpiresOk returns a tuple with the Expires field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Event) GetExpiresOk() (*time.Time, bool) {
if o == nil || IsNil(o.Expires) {
return nil, false
}
return o.Expires, true
}
// HasExpires returns a boolean if a field has been set.
func (o *Event) HasExpires() bool {
if o != nil && !IsNil(o.Expires) {
return true
}
return false
}
// SetExpires gets a reference to the given time.Time and assigns it to the Expires field.
func (o *Event) SetExpires(v time.Time) {
o.Expires = &v
}
// GetBrand returns the Brand field value if set, zero value otherwise.
func (o *Event) GetBrand() map[string]interface{} {
if o == nil || IsNil(o.Brand) {
var ret map[string]interface{}
return ret
}
return o.Brand
}
// GetBrandOk returns a tuple with the Brand field value if set, nil otherwise
// and a boolean to check if the value has been set.
func (o *Event) GetBrandOk() (map[string]interface{}, bool) {
if o == nil || IsNil(o.Brand) {
return map[string]interface{}{}, false
}
return o.Brand, true
}
// HasBrand returns a boolean if a field has been set.
func (o *Event) HasBrand() bool {
if o != nil && !IsNil(o.Brand) {
return true
}
return false
}
// SetBrand gets a reference to the given map[string]interface{} and assigns it to the Brand field.
func (o *Event) SetBrand(v map[string]interface{}) {
o.Brand = v
}
func (o Event) MarshalJSON() ([]byte, error) {
toSerialize, err := o.ToMap()
if err != nil {
return []byte{}, err
}
return json.Marshal(toSerialize)
}
func (o Event) ToMap() (map[string]interface{}, error) {
toSerialize := map[string]interface{}{}
toSerialize["pk"] = o.Pk
if !IsNil(o.User) {
toSerialize["user"] = o.User
}
toSerialize["action"] = o.Action
toSerialize["app"] = o.App
if !IsNil(o.Context) {
toSerialize["context"] = o.Context
}
if o.ClientIp.IsSet() {
toSerialize["client_ip"] = o.ClientIp.Get()
}
toSerialize["created"] = o.Created
if !IsNil(o.Expires) {
toSerialize["expires"] = o.Expires
}
if !IsNil(o.Brand) {
toSerialize["brand"] = o.Brand
}
for key, value := range o.AdditionalProperties {
toSerialize[key] = value
}
return toSerialize, nil
}
func (o *Event) UnmarshalJSON(data []byte) (err error) {
// This validates that all required properties are included in the JSON object
// by unmarshalling the object into a generic map with string keys and checking
// that every required field exists as a key in the generic map.
requiredProperties := []string{
"pk",
"action",
"app",
"created",
}
allProperties := make(map[string]interface{})
err = json.Unmarshal(data, &allProperties)
if err != nil {
return err
}
for _, requiredProperty := range requiredProperties {
if _, exists := allProperties[requiredProperty]; !exists {
return fmt.Errorf("no value given for required property %v", requiredProperty)
}
}
varEvent := _Event{}
err = json.Unmarshal(data, &varEvent)
if err != nil {
return err
}
*o = Event(varEvent)
additionalProperties := make(map[string]interface{})
if err = json.Unmarshal(data, &additionalProperties); err == nil {
delete(additionalProperties, "pk")
delete(additionalProperties, "user")
delete(additionalProperties, "action")
delete(additionalProperties, "app")
delete(additionalProperties, "context")
delete(additionalProperties, "client_ip")
delete(additionalProperties, "created")
delete(additionalProperties, "expires")
delete(additionalProperties, "brand")
o.AdditionalProperties = additionalProperties
}
return err
}
type NullableEvent struct {
value *Event
isSet bool
}
func (v NullableEvent) Get() *Event {
return v.value
}
func (v *NullableEvent) Set(val *Event) {
v.value = val
v.isSet = true
}
func (v NullableEvent) IsSet() bool {
return v.isSet
}
func (v *NullableEvent) Unset() {
v.value = nil
v.isSet = false
}
func NewNullableEvent(val *Event) *NullableEvent {
return &NullableEvent{value: val, isSet: true}
}
func (v NullableEvent) MarshalJSON() ([]byte, error) {
return json.Marshal(v.value)
}
func (v *NullableEvent) UnmarshalJSON(src []byte) error {
v.isSet = true
return json.Unmarshal(src, &v.value)
}