AI-generated Key Takeaways
-
A Glass setting resource is represented by a JSON object with
kind
,id
, andvalue
properties. -
Valid setting IDs include
locale
for the user's language andtimezone
for the user's time zone. -
The
kind
property for a Glass setting resource is alwaysmirror#setting
. -
The
value
property holds the setting's value as a string. -
The
get
method allows retrieving a single setting by its ID.
For a list of methods for this resource, see the end of this page.
Resource representations
A setting for Glass.
{ "kind": "mirror#setting", "id": string, "value": string }
Property name | Value | Description | Notes |
---|---|---|---|
id |
string |
The setting's ID. The following IDs are valid:
|
|
kind |
string |
The type of resource. This is always mirror#setting . |
|
value |
string |
The setting value, as a string. |
Methods
- get
- Gets a single setting by ID.