75 lines
1.7 KiB
Go
75 lines
1.7 KiB
Go
|
// Code generated by go-swagger; DO NOT EDIT.
|
||
|
|
||
|
package models
|
||
|
|
||
|
// This file was generated by the swagger tool.
|
||
|
// Editing this file might prove futile when you re-run the swagger generate command
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/go-openapi/strfmt"
|
||
|
"github.com/go-openapi/swag"
|
||
|
)
|
||
|
|
||
|
// UserSettingsOptions UserSettingsOptions represents options to change user settings
|
||
|
//
|
||
|
// swagger:model UserSettingsOptions
|
||
|
type UserSettingsOptions struct {
|
||
|
|
||
|
// description
|
||
|
Description string `json:"description,omitempty"`
|
||
|
|
||
|
// diff view style
|
||
|
DiffViewStyle string `json:"diff_view_style,omitempty"`
|
||
|
|
||
|
// full name
|
||
|
FullName string `json:"full_name,omitempty"`
|
||
|
|
||
|
// hide activity
|
||
|
HideActivity bool `json:"hide_activity,omitempty"`
|
||
|
|
||
|
// Privacy
|
||
|
HideEmail bool `json:"hide_email,omitempty"`
|
||
|
|
||
|
// language
|
||
|
Language string `json:"language,omitempty"`
|
||
|
|
||
|
// location
|
||
|
Location string `json:"location,omitempty"`
|
||
|
|
||
|
// theme
|
||
|
Theme string `json:"theme,omitempty"`
|
||
|
|
||
|
// website
|
||
|
Website string `json:"website,omitempty"`
|
||
|
}
|
||
|
|
||
|
// Validate validates this user settings options
|
||
|
func (m *UserSettingsOptions) Validate(formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// ContextValidate validates this user settings options based on context it is used
|
||
|
func (m *UserSettingsOptions) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
// MarshalBinary interface implementation
|
||
|
func (m *UserSettingsOptions) MarshalBinary() ([]byte, error) {
|
||
|
if m == nil {
|
||
|
return nil, nil
|
||
|
}
|
||
|
return swag.WriteJSON(m)
|
||
|
}
|
||
|
|
||
|
// UnmarshalBinary interface implementation
|
||
|
func (m *UserSettingsOptions) UnmarshalBinary(b []byte) error {
|
||
|
var res UserSettingsOptions
|
||
|
if err := swag.ReadJSON(b, &res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
*m = res
|
||
|
return nil
|
||
|
}
|