mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-17 19:09:11 +03:00
ea61e1cf3b
Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
197 lines
4.6 KiB
Go
Generated
197 lines
4.6 KiB
Go
Generated
/*
|
|
authentik
|
|
|
|
Making authentication simple.
|
|
|
|
API version: 2026.8.0-rc1
|
|
Contact: hello@goauthentik.io
|
|
*/
|
|
|
|
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
|
|
|
|
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
)
|
|
|
|
// checks if the ConsentPermission type satisfies the MappedNullable interface at compile time
|
|
var _ MappedNullable = &ConsentPermission{}
|
|
|
|
// ConsentPermission Permission used for consent
|
|
type ConsentPermission struct {
|
|
Name string `json:"name"`
|
|
Id string `json:"id"`
|
|
AdditionalProperties map[string]interface{}
|
|
}
|
|
|
|
type _ConsentPermission ConsentPermission
|
|
|
|
// NewConsentPermission instantiates a new ConsentPermission 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 NewConsentPermission(name string, id string) *ConsentPermission {
|
|
this := ConsentPermission{}
|
|
this.Name = name
|
|
this.Id = id
|
|
return &this
|
|
}
|
|
|
|
// NewConsentPermissionWithDefaults instantiates a new ConsentPermission 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 NewConsentPermissionWithDefaults() *ConsentPermission {
|
|
this := ConsentPermission{}
|
|
return &this
|
|
}
|
|
|
|
// GetName returns the Name field value
|
|
func (o *ConsentPermission) GetName() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Name
|
|
}
|
|
|
|
// GetNameOk returns a tuple with the Name field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *ConsentPermission) GetNameOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Name, true
|
|
}
|
|
|
|
// SetName sets field value
|
|
func (o *ConsentPermission) SetName(v string) {
|
|
o.Name = v
|
|
}
|
|
|
|
// GetId returns the Id field value
|
|
func (o *ConsentPermission) GetId() string {
|
|
if o == nil {
|
|
var ret string
|
|
return ret
|
|
}
|
|
|
|
return o.Id
|
|
}
|
|
|
|
// GetIdOk returns a tuple with the Id field value
|
|
// and a boolean to check if the value has been set.
|
|
func (o *ConsentPermission) GetIdOk() (*string, bool) {
|
|
if o == nil {
|
|
return nil, false
|
|
}
|
|
return &o.Id, true
|
|
}
|
|
|
|
// SetId sets field value
|
|
func (o *ConsentPermission) SetId(v string) {
|
|
o.Id = v
|
|
}
|
|
|
|
func (o ConsentPermission) MarshalJSON() ([]byte, error) {
|
|
toSerialize, err := o.ToMap()
|
|
if err != nil {
|
|
return []byte{}, err
|
|
}
|
|
return json.Marshal(toSerialize)
|
|
}
|
|
|
|
func (o ConsentPermission) ToMap() (map[string]interface{}, error) {
|
|
toSerialize := map[string]interface{}{}
|
|
toSerialize["name"] = o.Name
|
|
toSerialize["id"] = o.Id
|
|
|
|
for key, value := range o.AdditionalProperties {
|
|
toSerialize[key] = value
|
|
}
|
|
|
|
return toSerialize, nil
|
|
}
|
|
|
|
func (o *ConsentPermission) 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{
|
|
"name",
|
|
"id",
|
|
}
|
|
|
|
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)
|
|
}
|
|
}
|
|
|
|
varConsentPermission := _ConsentPermission{}
|
|
|
|
err = json.Unmarshal(data, &varConsentPermission)
|
|
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
*o = ConsentPermission(varConsentPermission)
|
|
|
|
additionalProperties := make(map[string]interface{})
|
|
|
|
if err = json.Unmarshal(data, &additionalProperties); err == nil {
|
|
delete(additionalProperties, "name")
|
|
delete(additionalProperties, "id")
|
|
o.AdditionalProperties = additionalProperties
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
type NullableConsentPermission struct {
|
|
value *ConsentPermission
|
|
isSet bool
|
|
}
|
|
|
|
func (v NullableConsentPermission) Get() *ConsentPermission {
|
|
return v.value
|
|
}
|
|
|
|
func (v *NullableConsentPermission) Set(val *ConsentPermission) {
|
|
v.value = val
|
|
v.isSet = true
|
|
}
|
|
|
|
func (v NullableConsentPermission) IsSet() bool {
|
|
return v.isSet
|
|
}
|
|
|
|
func (v *NullableConsentPermission) Unset() {
|
|
v.value = nil
|
|
v.isSet = false
|
|
}
|
|
|
|
func NewNullableConsentPermission(val *ConsentPermission) *NullableConsentPermission {
|
|
return &NullableConsentPermission{value: val, isSet: true}
|
|
}
|
|
|
|
func (v NullableConsentPermission) MarshalJSON() ([]byte, error) {
|
|
return json.Marshal(v.value)
|
|
}
|
|
|
|
func (v *NullableConsentPermission) UnmarshalJSON(src []byte) error {
|
|
v.isSet = true
|
|
return json.Unmarshal(src, &v.value)
|
|
}
|