Class ListItem
A single list item in a note's list.
Implements
Inherited Members
Namespace: Google.Apis.Keep.v1.Data
Assembly: Google.Apis.Keep.v1.dll
Syntax
public class ListItem : IDirectResponseSchema
Properties
Checked__
Whether this item has been checked off or not.
Declaration
[JsonProperty("checked")]
public virtual bool? Checked__ { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ChildListItems
If set, list of list items nested under this list item. Only one level of nesting is allowed.
Declaration
[JsonProperty("childListItems")]
public virtual IList<ListItem> ChildListItems { get; set; }
Property Value
Type | Description |
---|---|
IList<ListItem> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Text
The text of this item. Length must be less than 1,000 characters.
Declaration
[JsonProperty("text")]
public virtual TextContent Text { get; set; }
Property Value
Type | Description |
---|---|
TextContent |