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

61 lines
1.4 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"
)
// Tag Tag represents a hashtag used within the content of a status.
//
// swagger:model Tag
type Tag struct {
// History of this hashtag's usage.
// Currently just a stub, if provided will always be an empty array.
// Example: []
History []interface{} `json:"history"`
// The value of the hashtag after the # sign.
// Example: helloworld
Name string `json:"name,omitempty"`
// Web link to the hashtag.
// Example: https://example.org/tags/helloworld
URL string `json:"url,omitempty"`
}
// Validate validates this tag
func (m *Tag) Validate(formats strfmt.Registry) error {
return nil
}
// ContextValidate validates this tag based on context it is used
func (m *Tag) ContextValidate(ctx context.Context, formats strfmt.Registry) error {
return nil
}
// MarshalBinary interface implementation
func (m *Tag) MarshalBinary() ([]byte, error) {
if m == nil {
return nil, nil
}
return swag.WriteJSON(m)
}
// UnmarshalBinary interface implementation
func (m *Tag) UnmarshalBinary(b []byte) error {
var res Tag
if err := swag.ReadJSON(b, &res); err != nil {
return err
}
*m = res
return nil
}