DebugFile¶
Source definition: src/bitdrift/public/unary/debug_files/v1/debug_files.proto#L103-L121
| Field | Type | Description |
|---|---|---|
| type | bitdrift.public.unary.debug_files.v1.DebugFileType must be a defined enum value |
The debug file type. |
| processing_state | bitdrift.public.unary.debug_files.v1.DebugFileProcessingState must be a defined enum value |
The current processing state of the debug file. |
| file_hash | string up to 255 chars |
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 | up to 100 items |
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"
}