-
Couldn't load subscription status.
- Fork 51
Stickers #63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Stickers #63
Changes from 7 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
48037a1
Add sticker utils
1a6aa67
Add docs
f43dfb3
Add remaining fields
a415bff
Add REST calls
015fb1f
Add sticker packs and finish docs
db47404
Add sticker pack comments
def6a0c
Remove panics
587d58c
Change to pointer
arynxd fff058e
Merge branch 'patch/package-reformat' into feature/stickers
topi314 5a7af1c
sticker stuff but updated to reformat branch
topi314 7502269
go mod tidy
topi314 cb4e0fa
Merge branch 'patch/package-reformat' into feature/stickers
topi314 a742f62
Merge branch 'patch/package-reformat' into feature/stickers
topi314 2cc3438
Merge branch 'patch/package-reformat' into feature/stickers
topi314 250c66c
fix unit test
topi314 79d4103
Merge branch 'patch/package-reformat' into feature/stickers
topi314 dc2e9f4
Merge branch 'patch/package-reformat' into feature/stickers
topi314 905a9c8
what
topi314 f8d3c56
Merge branch 'patch/package-reformat' into feature/stickers
topi314 64ece31
added MessageSticker#URL
topi314 1f3e0f8
add sticker type check
topi314 878be69
fixed event file names
topi314 4f17bd7
update check
topi314 b88ba4e
renamed sticker service methods & added Guild#create/update/delete em…
topi314 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| package api | ||
|
|
||
| // StickerPack is a collection of MessageSticker(s) (https://discord.com/developers/docs/resources/sticker#sticker-pack-object) | ||
| type StickerPack struct { | ||
| ID Snowflake `json:"id"` | ||
| Stickers []*MessageSticker `json:"stickers"` | ||
| Name string `json:"name"` | ||
| SkuID Snowflake `json:"sku_id"` | ||
| CoverStickerID Snowflake `json:"cover_sticker_id,omitempty"` | ||
| Description string `json:"description"` | ||
| BannerAssetID Snowflake `json:"banner_asset_id"` | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.