@@ -1832,7 +1832,7 @@ pub struct Transaction<'a> {
1832
1832
pub tags : Map < String , String > ,
1833
1833
/// Optional extra information to be sent with the event.
1834
1834
#[ serde( default , skip_serializing_if = "Map::is_empty" ) ]
1835
- pub extra : Map < String , Value > ,
1835
+ pub data : Map < String , Value > ,
1836
1836
/// SDK metadata
1837
1837
#[ serde( default , skip_serializing_if = "Option::is_none" ) ]
1838
1838
pub sdk : Option < Cow < ' a , ClientSdkInfo > > ,
@@ -1861,7 +1861,7 @@ impl<'a> Default for Transaction<'a> {
1861
1861
event_id : event:: default_id ( ) ,
1862
1862
name : Default :: default ( ) ,
1863
1863
tags : Default :: default ( ) ,
1864
- extra : Default :: default ( ) ,
1864
+ data : Default :: default ( ) ,
1865
1865
release : Default :: default ( ) ,
1866
1866
environment : Default :: default ( ) ,
1867
1867
sdk : Default :: default ( ) ,
@@ -1886,7 +1886,7 @@ impl<'a> Transaction<'a> {
1886
1886
event_id : self . event_id ,
1887
1887
name : self . name ,
1888
1888
tags : self . tags ,
1889
- extra : self . extra ,
1889
+ data : self . data ,
1890
1890
release : self . release . map ( |x| Cow :: Owned ( x. into_owned ( ) ) ) ,
1891
1891
environment : self . environment . map ( |x| Cow :: Owned ( x. into_owned ( ) ) ) ,
1892
1892
sdk : self . sdk . map ( |x| Cow :: Owned ( x. into_owned ( ) ) ) ,
0 commit comments