Source File
types.go
Belonging Package
github.com/chromedp/cdproto/database
package database// Code generated by cdproto-gen. DO NOT EDIT.// ID unique identifier of Database object.//// See: https://chromedevtools.github.io/devtools-protocol/tot/Database#type-DatabaseIdtype ID string// String returns the ID as string value.func ( ID) () string {return string()}// Database database object.//// See: https://chromedevtools.github.io/devtools-protocol/tot/Database#type-Databasetype Database struct {ID ID `json:"id"` // Database ID.Domain string `json:"domain"` // Database domain.Name string `json:"name"` // Database name.Version string `json:"version"` // Database version.}// Error database error.//// See: https://chromedevtools.github.io/devtools-protocol/tot/Database#type-Errortype Error struct {Message string `json:"message"` // Error message.Code int64 `json:"code"` // Error code.}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |