Skip to content
View as Markdown

ListDebugFilesRequest

Field Type Description
pagination bitdrift.public.unary.common.v1.Pagination A structured way to provide pagination information.
type optional bitdrift.public.unary.debug_files.v1.DebugFileType Filters debug files by file type.
processing_state optional bitdrift.public.unary.debug_files.v1.DebugFileProcessingState Filters debug files by processing state.
file_hash optional string Filters debug files by the uploaded file hash.
app_scopes repeated bitdrift.public.unary.debug_files.v1.DebugFileAppScope Filters debug files by a matching app scope.
sort repeated bitdrift.public.unary.debug_files.v1.ListDebugFilesRequest.Sort Orders debug files by caller-visible attributes. Apply criteria in the order provided.

Example

JSON
{
  "app_scopes": [
    {
      "app_build_id": "456",
      "app_id": "com.example.app",
      "app_version": "1.2.3",
      "platform": "APPLE"
    }
  ],
  "file_hash": "abc123",
  "pagination": {
    "limit": 25,
    "offset": 0
  },
  "processing_state": "PROCESSED",
  "sort": [
    {
      "direction": "DESCENDING",
      "key": "CREATED_AT"
    }
  ],
  "type": "DEBUG_FILE"
}

ListDebugFilesRequest.Sort

Field Type Description
key bitdrift.public.unary.debug_files.v1.ListDebugFilesRequest.Sort.SortKey Selects which caller-visible debug file attribute to order by.
direction bitdrift.public.unary.common.v1.SortDirection Selects whether results are returned in ascending or descending order.

Example

JSON
{
  "direction": "DESCENDING",
  "key": "CREATED_AT"
}

ListDebugFilesRequest.Sort.SortKey

Name Number Description
SORT_KEY_UNSPECIFIED 0
CREATED_AT 1
UPDATED_AT 2