This repository was archived by the owner on Apr 24, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace Segment.Model
9
9
public class Alias : BaseAction
10
10
{
11
11
[ JsonProperty ( PropertyName = "previousId" ) ]
12
- private string PreviousId { get ; set ; }
12
+ public string PreviousId { get ; set ; }
13
13
14
14
internal Alias ( string previousId , string userId , Options options )
15
15
: base ( "alias" , userId , options )
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ namespace Segment.Model
9
9
public class Group : BaseAction
10
10
{
11
11
[ JsonProperty ( PropertyName = "groupId" ) ]
12
- private string GroupId { get ; set ; }
12
+ public string GroupId { get ; set ; }
13
13
14
14
[ JsonProperty ( PropertyName = "traits" ) ]
15
- private IDictionary < string , object > Traits { get ; set ; }
15
+ public IDictionary < string , object > Traits { get ; set ; }
16
16
17
17
internal Group ( string userId ,
18
18
string groupId ,
Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Text ;
4
4
@@ -9,13 +9,13 @@ namespace Segment.Model
9
9
public class Page : BaseAction
10
10
{
11
11
[ JsonProperty ( PropertyName = "name" ) ]
12
- private string Name { get ; set ; }
12
+ public string Name { get ; set ; }
13
13
14
14
[ JsonProperty ( PropertyName = "category" ) ]
15
- private string Category { get ; set ; }
15
+ public string Category { get ; set ; }
16
16
17
17
[ JsonProperty ( PropertyName = "properties" ) ]
18
- private IDictionary < string , object > Properties { get ; set ; }
18
+ public IDictionary < string , object > Properties { get ; set ; }
19
19
20
20
internal Page ( string userId ,
21
21
string name ,
Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Text ;
4
4
@@ -9,13 +9,13 @@ namespace Segment.Model
9
9
public class Screen : BaseAction
10
10
{
11
11
[ JsonProperty ( PropertyName = "name" ) ]
12
- private string Name { get ; set ; }
12
+ public string Name { get ; set ; }
13
13
14
14
[ JsonProperty ( PropertyName = "category" ) ]
15
- private string Category { get ; set ; }
15
+ public string Category { get ; set ; }
16
16
17
17
[ JsonProperty ( PropertyName = "properties" ) ]
18
- private IDictionary < string , object > Properties { get ; set ; }
18
+ public IDictionary < string , object > Properties { get ; set ; }
19
19
20
20
internal Screen ( string userId ,
21
21
string name ,
Original file line number Diff line number Diff line change 1
- using System ;
1
+ using System ;
2
2
using System . Collections . Generic ;
3
3
using System . Text ;
4
4
@@ -9,10 +9,10 @@ namespace Segment.Model
9
9
public class Track : BaseAction
10
10
{
11
11
[ JsonProperty ( PropertyName = "event" ) ]
12
- private string EventName { get ; set ; }
12
+ public string EventName { get ; set ; }
13
13
14
14
[ JsonProperty ( PropertyName = "properties" ) ]
15
- private IDictionary < string , object > Properties { get ; set ; }
15
+ public IDictionary < string , object > Properties { get ; set ; }
16
16
17
17
internal Track ( string userId ,
18
18
string eventName ,
You can’t perform that action at this time.
0 commit comments