mirror of
https://github.com/aunefyren/wrapperr
synced 2025-01-10 00:38:41 +00:00
22 lines
794 B
Go
22 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"`
|
||
|
}
|