add Cookie struct

This commit is contained in:
Nite07 2024-12-04 21:25:31 +08:00
parent 662e1dc6e5
commit f6469471bb

View File

@ -16,23 +16,25 @@ type Request struct {
SiteKey string `json:"siteKey"` SiteKey string `json:"siteKey"`
} }
type Cookie struct {
Name string `json:"name"`
Value string `json:"value"`
Domain string `json:"domain"`
Path string `json:"path"`
Expires float64 `json:"expires"`
Size int `json:"size"`
HTTPOnly bool `json:"httpOnly"`
Secure bool `json:"secure"`
Session bool `json:"session"`
SameSite string `json:"sameSite"`
Priority string `json:"priority"`
SameParty bool `json:"sameParty"`
SourceScheme string `json:"sourceScheme"`
PartitionKey string `json:"partitionKey"`
}
type Session struct { type Session struct {
Cookies []struct { Cookies []Cookie `json:"cookies"`
Name string `json:"name"`
Value string `json:"value"`
Domain string `json:"domain"`
Path string `json:"path"`
Expires float64 `json:"expires"`
Size int `json:"size"`
HTTPOnly bool `json:"httpOnly"`
Secure bool `json:"secure"`
Session bool `json:"session"`
SameSite string `json:"sameSite"`
Priority string `json:"priority"`
SameParty bool `json:"sameParty"`
SourceScheme string `json:"sourceScheme"`
PartitionKey string `json:"partitionKey"`
} `json:"cookies"`
Headers map[string]string `json:"headers"` Headers map[string]string `json:"headers"`
Code int `json:"code"` Code int `json:"code"`
} }