gtslib/models/mention.go
decentral1se e4ade9c758
All checks were successful
continuous-integration/drone/push Build is passing
feat: init
2024-07-31 22:47:18 +02:00

65 lines
1.6 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"
)
// Mention Mention represents a mention of another account.
//
// swagger:model Mention
type Mention struct {
// The account URI as discovered via webfinger.
// Equal to username for local users, or username@domain for remote users.
// Example: some_user@example.org
Acct string `json:"acct,omitempty"`
// The ID of the mentioned account.
// Example: 01FBYJHQWQZAVWFRK9PDYTKGMB
ID string `json:"id,omitempty"`
// The web URL of the mentioned account's profile.
// Example: https://example.org/@some_user
URL string `json:"url,omitempty"`
// The username of the mentioned account.
// Example: some_user
Username string `json:"username,omitempty"`
}
// Validate validates this mention
func (m *Mention) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this mention based on context it is used
func (m *Mention) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Mention) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Mention) UnmarshalBinary(b []byte) error {
var res Mention
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}