package
Version:
v1.0.0
Opens a new window with list of versions in this module.
Published: Oct 25, 2023
License: MIT
Opens a new window with license information.
Imports: 6
Opens a new window with list of imports.
Imported by: 2
Opens a new window with list of known importers.
Documentation
¶
type SPCreateReq struct {
Token string `json:"token"`
VN string `json:"vn"`
Scope string `json:"scope"`
ID string `json:"id"`
FQ []*fq.FQ `json:"fq"`
}
type SPCreateResp struct {
VN vn.ID `json:"vn"`
ID sp.ID `json:"id"`
Link []sp.ID `json:"link"`
Originator ki.Ki `json:"originator"`
Guardian ki.Ki `json:"guardian"`
Dob int64 `json:"dob"`
}
type SPGetReq struct {
By load.ByCode `json:"by"`
ID sp.ID `json:"id"`
}
type SPLoadReq struct {
IDs []sp.ID `json:"ids"`
VNs []vn.ID `json:"vns"`
Page *load.Page `json:"page"`
}
type SPLoadResp struct {
Paging *load.Paging `bson:"paging" json:"paging"`
Items []*sp.SP `bson:"items" json:"items"`
}
type VNCreateReq struct {
Token string `json:"token"`
ID string `json:"id"`
}
type VNCreateResp struct {
ID string `json:"id"`
Originator ki.Ki `json:"originator"`
Guardian ki.Ki `json:"guardian"`
Dob int64 `json:"dob"`
}
type VNGetReq struct {
By load.ByCode `json:"by"`
ID vn.ID `json:"id"`
}
type VNLoadReq struct {
IDs []vn.ID `json:"ids"`
Page *load.Page `json:"page"`
}
type VNLoadResp struct {
Paging *load.Paging `bson:"paging" json:"paging"`
Items []*vn.VN `bson:"items" json:"items"`
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.