@@ -342,13 +342,13 @@ pub struct Request {
342
342
#[ derive( Serialize , Deserialize , Debug , Clone , PartialEq ) ]
343
343
pub struct SystemSdkInfo {
344
344
/// The internal name of the SDK
345
- sdk_name : String ,
345
+ pub sdk_name : String ,
346
346
/// the major version of the SDK as integer or 0
347
- version_major : u32 ,
347
+ pub version_major : u32 ,
348
348
/// the minor version of the SDK as integer or 0
349
- version_minior : u32 ,
349
+ pub version_minior : u32 ,
350
350
/// the patch version of the SDK as integer or 0
351
- version_patchlevel : u32 ,
351
+ pub version_patchlevel : u32 ,
352
352
}
353
353
354
354
/// Represents a debug image.
@@ -410,10 +410,10 @@ pub struct ProguardDebugImage {
410
410
pub struct DebugMeta {
411
411
/// Optional system SDK information.
412
412
#[ serde( skip_serializing_if = "Option::is_none" ) ]
413
- sdk_info : Option < SystemSdkInfo > ,
413
+ pub sdk_info : Option < SystemSdkInfo > ,
414
414
/// A list of debug information files.
415
415
#[ serde( skip_serializing_if = "Option::is_none" ) ]
416
- images : Option < DebugImage > ,
416
+ pub images : Option < DebugImage > ,
417
417
}
418
418
419
419
/// Represents a repository reference.
0 commit comments