// 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" ) // Emoji Emoji represents a custom emoji. // // swagger:model Emoji type Emoji struct { // Used for sorting custom emoji in the picker. // Example: blobcats Category string `json:"category,omitempty"` // The name of the custom emoji. // Example: blobcat_uwu Shortcode string `json:"shortcode,omitempty"` // A link to a static copy of the custom emoji. // Example: https://example.org/fileserver/emojis/blogcat_uwu.png StaticURL string `json:"static_url,omitempty"` // Web URL of the custom emoji. // Example: https://example.org/fileserver/emojis/blogcat_uwu.gif URL string `json:"url,omitempty"` // Emoji is visible in the emoji picker of the instance. // Example: true VisibleInPicker bool `json:"visible_in_picker,omitempty"` } // Validate validates this emoji func (m *Emoji) Validate(formats strfmt.Registry) error { return nil } // ContextValidate validates this emoji based on context it is used func (m *Emoji) ContextValidate(ctx context.Context, formats strfmt.Registry) error { return nil } // MarshalBinary interface implementation func (m *Emoji) MarshalBinary() ([]byte, error) { if m == nil { return nil, nil } return swag.WriteJSON(m) } // UnmarshalBinary interface implementation func (m *Emoji) UnmarshalBinary(b []byte) error { var res Emoji if err := swag.ReadJSON(b, &res); err != nil { return err } *m = res return nil }