Skip to content

Commit de1ebb0

Browse files
committed
feat: Made some fields public that were not
1 parent a223bed commit de1ebb0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/protocol/v7.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,13 +342,13 @@ pub struct Request {
342342
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq)]
343343
pub struct SystemSdkInfo {
344344
/// The internal name of the SDK
345-
sdk_name: String,
345+
pub sdk_name: String,
346346
/// the major version of the SDK as integer or 0
347-
version_major: u32,
347+
pub version_major: u32,
348348
/// the minor version of the SDK as integer or 0
349-
version_minior: u32,
349+
pub version_minior: u32,
350350
/// the patch version of the SDK as integer or 0
351-
version_patchlevel: u32,
351+
pub version_patchlevel: u32,
352352
}
353353

354354
/// Represents a debug image.
@@ -410,10 +410,10 @@ pub struct ProguardDebugImage {
410410
pub struct DebugMeta {
411411
/// Optional system SDK information.
412412
#[serde(skip_serializing_if = "Option::is_none")]
413-
sdk_info: Option<SystemSdkInfo>,
413+
pub sdk_info: Option<SystemSdkInfo>,
414414
/// A list of debug information files.
415415
#[serde(skip_serializing_if = "Option::is_none")]
416-
images: Option<DebugImage>,
416+
pub images: Option<DebugImage>,
417417
}
418418

419419
/// Represents a repository reference.

0 commit comments

Comments
 (0)