Cleanup docs and standardize structs
This commit is contained in:
parent
46cd8708a4
commit
78343a62b8
5 changed files with 24 additions and 29 deletions
4
docs/api/structures/bluetooth-device.md
Normal file
4
docs/api/structures/bluetooth-device.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Bluetooth Device Object
|
||||
|
||||
* `deviceName` String
|
||||
* `deviceId` String
|
14
docs/api/structures/cookie.md
Normal file
14
docs/api/structures/cookie.md
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Certificate Object
|
||||
|
||||
* `name` String - The name of the cookie.
|
||||
* `value` String - The value of the cookie.
|
||||
* `domain` String - The domain of the cookie.
|
||||
* `hostOnly` String - Whether the cookie is a host-only cookie.
|
||||
* `path` String - The path of the cookie.
|
||||
* `secure` Boolean - Whether the cookie is marked as secure.
|
||||
* `httpOnly` Boolean - Whether the cookie is marked as HTTP only.
|
||||
* `session` Boolean - Whether the cookie is a session cookie or a persistent
|
||||
cookie with an expiration date.
|
||||
* `expirationDate` Double (optional) - The expiration date of the cookie as
|
||||
the number of seconds since the UNIX epoch. Not provided for session
|
||||
cookies.
|
Loading…
Add table
Add a link
Reference in a new issue