Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: PLACEHOLDER TITLE #6

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2300,7 +2300,7 @@ components:
required: false
schema:
type: boolean
example: true
example: True

fleetUIDQueryParam:
name: fleetUID
Expand Down
8 changes: 4 additions & 4 deletions src/docs/EventApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down Expand Up @@ -153,7 +153,7 @@ with notehub_py.ApiClient(configuration) as api_client:
limit = 50 # int | (optional) (default to 50)
cursor = 'cursor_example' # str | A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included. (optional)
sort_order = 'asc' # str | (optional) (default to 'asc')
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)
device_uid = 'device_uid_example' # str | A Device UID. (optional)
start_date = 1628631763 # int | Unix timestamp (optional)
Expand Down Expand Up @@ -253,7 +253,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down Expand Up @@ -346,7 +346,7 @@ with notehub_py.ApiClient(configuration) as api_client:
limit = 50 # int | (optional) (default to 50)
cursor = 'cursor_example' # str | A cursor, which can be obtained from the `next_cursor` value from a previous call to this endpoint. The results set returned will include this event as its first result if the given identifier is actually the UID of an event. If this event UID is not found, the parameter is ignored and the results set is the same as if the parameter was not included. (optional)
sort_order = 'asc' # str | (optional) (default to 'asc')
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)
fleet_uid = 'fleet_uid_example' # str | (optional)
device_uid = 'device_uid_example' # str | A Device UID. (optional)
Expand Down
2 changes: 1 addition & 1 deletion src/docs/RouteApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ with notehub_py.ApiClient(configuration) as api_client:
sort_order = 'asc' # str | (optional) (default to 'asc')
start_date = 1628631763 # int | Unix timestamp (optional)
end_date = 1657894210 # int | Unix timestamp (optional)
system_files_only = true # bool | (optional)
system_files_only = True # bool | (optional)
files = '_health.qo, data.qo' # str | (optional)

try:
Expand Down
Loading