Record
list-options
Options for list and list-async.
record list-options {
mode: list-mode,
cursor: option<string>,
limit: option<u32>,
prefix: option<string>,
extra: option<borrow<extra-list-options>>,
}Fields
| Name | Type | Description |
|---|---|---|
| mode | list-mode | The level of synchronization to perform. |
| cursor | option<string> | The item to start the list at. |
| limit | option<u32> | The maximum number of items included the response. |
| prefix | option<string> | The prefix match for items to include in the resultset. |
| extra | option<borrow<extra-list-options>> | Additional options may be added in the future via this resource type. |