github.com/greenpau/go-authcrunch@v1.1.4/pkg/ids/local/user.go (about)

     1  // Copyright 2022 Paul Greenberg greenpau@outlook.com
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package local
    16  
    17  // User holds the configuration for the identity store user.
    18  type User struct {
    19  	Username                 string   `json:"username,omitempty" xml:"username,omitempty" yaml:"username,omitempty"`
    20  	EmailAddress             string   `json:"email_address,omitempty" xml:"email_address,omitempty" yaml:"email_address,omitempty"`
    21  	Name                     string   `json:"name,omitempty" xml:"name,omitempty" yaml:"name,omitempty"`
    22  	Roles                    []string `json:"roles,omitempty" xml:"roles,omitempty" yaml:"roles,omitempty"`
    23  	Password                 string   `json:"password,omitempty" xml:"password,omitempty" yaml:"password,omitempty"`
    24  	PasswordOverwriteEnabled bool     `json:"password_overwrite_enabled,omitempty" xml:"password_overwrite_enabled,omitempty" yaml:"password_overwrite_enabled,omitempty"`
    25  }