jsonapi

package
v9.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 19, 2019 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Embed

type Embed struct {
	Title       string       `json:"title,omitempty"`
	Description string       `json:"description,omitempty"`
	URL         string       `json:"url"`
	Timestamp   string       `json:"timestamp,omitempty"`
	Color       int          `json:"color,omitempty"`
	Fields      []EmbedField `json:"fields"`
	Footer      EmbedFooter  `json:"footer,omitempty"`
}

Embed is a json object that represents an embed in a MessageWithEmbed

func (Embed) MarshalEasyJSON

func (v Embed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Embed) MarshalJSON

func (v Embed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Embed) UnmarshalEasyJSON

func (v *Embed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Embed) UnmarshalJSON

func (v *Embed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EmbedField

type EmbedField struct {
	Name   string `json:"name"`
	Value  string `json:"value"`
	Inline bool   `json:"inline"`
}

EmbedField is a json object that represents a field in an Embed

func (EmbedField) MarshalEasyJSON

func (v EmbedField) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EmbedField) MarshalJSON

func (v EmbedField) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EmbedField) UnmarshalEasyJSON

func (v *EmbedField) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EmbedField) UnmarshalJSON

func (v *EmbedField) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type EmbedFooter

type EmbedFooter struct {
	Text string `json:"text"`
}

EmbedFooter is a json object that represents the footer of an embed

func (EmbedFooter) MarshalEasyJSON

func (v EmbedFooter) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (EmbedFooter) MarshalJSON

func (v EmbedFooter) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*EmbedFooter) UnmarshalEasyJSON

func (v *EmbedFooter) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*EmbedFooter) UnmarshalJSON

func (v *EmbedFooter) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type GatewayResponse

type GatewayResponse struct {
	URL    string `json:"url"`
	Shards int    `json:"shards"`
}

GatewayResponse is the json object received from the discord api when requesting gateway connection information

func (GatewayResponse) MarshalEasyJSON

func (v GatewayResponse) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (GatewayResponse) MarshalJSON

func (v GatewayResponse) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*GatewayResponse) UnmarshalEasyJSON

func (v *GatewayResponse) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*GatewayResponse) UnmarshalJSON

func (v *GatewayResponse) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type Message

type Message struct {
	Content string `json:"content"`
	Tts     bool   `json:"tts"`
}

Message is the json object that is sent to the discord api to post a plain-text message to a server

func (Message) MarshalEasyJSON

func (v Message) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (Message) MarshalJSON

func (v Message) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*Message) UnmarshalEasyJSON

func (v *Message) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*Message) UnmarshalJSON

func (v *Message) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

type MessageWithEmbed

type MessageWithEmbed struct {
	Content string `json:"content"`
	Tts     bool   `json:"tts"`
	Embed   Embed  `json:"embed"`
}

MessageWithEmbed is the json object that is sent to the discord api to post an embed message to a server

func (MessageWithEmbed) MarshalEasyJSON

func (v MessageWithEmbed) MarshalEasyJSON(w *jwriter.Writer)

MarshalEasyJSON supports easyjson.Marshaler interface

func (MessageWithEmbed) MarshalJSON

func (v MessageWithEmbed) MarshalJSON() ([]byte, error)

MarshalJSON supports json.Marshaler interface

func (*MessageWithEmbed) UnmarshalEasyJSON

func (v *MessageWithEmbed) UnmarshalEasyJSON(l *jlexer.Lexer)

UnmarshalEasyJSON supports easyjson.Unmarshaler interface

func (*MessageWithEmbed) UnmarshalJSON

func (v *MessageWithEmbed) UnmarshalJSON(data []byte) error

UnmarshalJSON supports json.Unmarshaler interface

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL