Skip to content
View as Markdown

ListDebugFilesResponse

Field Type Description
debug_files repeated bitdrift.public.unary.debug_files.v1.DebugFile The debug files that matched the request.
total_count uint32 The total number of debug files that matched the request.

Example

JSON
{
  "debug_files": [
    {
      "app_scopes": [
        {
          "app_build_id": "456",
          "app_id": "com.example.app",
          "app_version": "1.2.3",
          "platform": "APPLE"
        }
      ],
      "created_at": "2024-01-15T09:30:00Z",
      "file_hash": "abc123",
      "processing_state": "PROCESSED",
      "type": "PROGUARD",
      "updated_at": "2024-01-15T09:30:00Z"
    }
  ],
  "total_count": 42
}