autogits/bots-common/gitea-generated/models/g_p_g_key_email.go
Adam Majer 598ecbbd5a .
2024-07-07 21:12:40 +02:00

54 lines
1.2 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"
)
// GPGKeyEmail GPGKeyEmail an email attached to a GPGKey
//
// swagger:model GPGKeyEmail
type GPGKeyEmail struct {
// email
Email string `json:"email,omitempty"`
// verified
Verified bool `json:"verified,omitempty"`
}
// Validate validates this g p g key email
func (m *GPGKeyEmail) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this g p g key email based on context it is used
func (m *GPGKeyEmail) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *GPGKeyEmail) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *GPGKeyEmail) UnmarshalBinary(b []byte) error {
var res GPGKeyEmail
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}