Skip to content
View as Markdown

DebugFile

Field Type Description
type bitdrift.public.unary.debug_files.v1.DebugFileType The debug file type.
processing_state bitdrift.public.unary.debug_files.v1.DebugFileProcessingState The current processing state of the debug file.
file_hash string The SHA-256 hash of the uploaded file.
created_at google.protobuf.Timestamp The time the debug file record was created.
updated_at google.protobuf.Timestamp The time the debug file record was last updated.
app_scopes repeated bitdrift.public.unary.debug_files.v1.DebugFileAppScope The app scopes associated with this debug file.

Example

JSON
{
  "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"
}