mirror of
https://github.com/aunefyren/wrapperr
synced 2024-11-13 23:17:06 +00:00
21 lines
794 B
Go
21 lines
794 B
Go
package models
|
|
|
|
type WrapperrShareLinkCreateRequest struct {
|
|
Data WrapperrStatisticsReply `json:"data"`
|
|
Functions WrapperrCustomize `json:"functions"`
|
|
}
|
|
|
|
type WrapperrShareLinkGetRequest struct {
|
|
Hash string `json:"hash"`
|
|
}
|
|
|
|
type WrapperrShareLink struct {
|
|
Date string `json:"date"`
|
|
UserID int `json:"user_id"`
|
|
WrapperrVersion string `json:"wrapperr_version"`
|
|
Hash string `json:"hash"`
|
|
Content WrapperrShareLinkCreateRequest `json:"content"`
|
|
Message string `json:"message"`
|
|
Error bool `json:"error"`
|
|
Expired bool `json:"expired"`
|
|
}
|