autogits/bots-common/gitea-generated/models/update_user_avatar_option.go

51 lines
1.3 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
// 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"
)
// UpdateUserAvatarOption UpdateUserAvatarUserOption options when updating the user avatar
//
// swagger:model UpdateUserAvatarOption
type UpdateUserAvatarOption struct {
// image must be base64 encoded
Image string `json:"image,omitempty"`
}
// Validate validates this update user avatar option
func (m *UpdateUserAvatarOption) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this update user avatar option based on context it is used
func (m *UpdateUserAvatarOption) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *UpdateUserAvatarOption) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *UpdateUserAvatarOption) UnmarshalBinary(b []byte) error {
var res UpdateUserAvatarOption
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}