File tree 3 files changed +10
-10
lines changed
src/Nest/XPack/MachineLearning
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -24,10 +24,10 @@ public interface IGetCalendarsResponse : IResponse
24
24
public class Calendar
25
25
{
26
26
[ JsonProperty ( "calendar_id" ) ]
27
- public Id CalendarId { get ; set ; }
27
+ public string CalendarId { get ; set ; }
28
28
29
29
[ JsonProperty ( "job_ids" ) ]
30
- public IReadOnlyCollection < Id > JobIds { get ; set ; } = EmptyReadOnly < Id > . Collection ;
30
+ public IReadOnlyCollection < string > JobIds { get ; set ; } = EmptyReadOnly < string > . Collection ;
31
31
32
32
[ JsonProperty ( "description" ) ]
33
33
public string Description { get ; set ; }
Original file line number Diff line number Diff line change @@ -9,22 +9,22 @@ namespace Nest
9
9
public partial interface IPutCalendarResponse : IResponse
10
10
{
11
11
[ JsonProperty ( "calendar_id" ) ]
12
- Id CalendarId { get ; }
12
+ string CalendarId { get ; }
13
13
14
14
[ JsonProperty ( "description" ) ]
15
15
string Description { get ; }
16
16
17
17
[ JsonProperty ( "job_ids" ) ]
18
- IReadOnlyCollection < Id > JobIds { get ; }
18
+ IReadOnlyCollection < string > JobIds { get ; }
19
19
}
20
20
21
21
/// <inheritdoc cref="IPutCalendarResponse" />
22
22
public class PutCalendarResponse : ResponseBase , IPutCalendarResponse
23
23
{
24
- public Id CalendarId { get ; internal set ; }
24
+ public string CalendarId { get ; internal set ; }
25
25
26
26
public string Description { get ; internal set ; }
27
27
28
- public IReadOnlyCollection < Id > JobIds { get ; internal set ; } = EmptyReadOnly < Id > . Collection ;
28
+ public IReadOnlyCollection < string > JobIds { get ; internal set ; } = EmptyReadOnly < string > . Collection ;
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ namespace Nest
9
9
public partial interface IPutCalendarJobResponse : IResponse
10
10
{
11
11
[ JsonProperty ( "calendar_id" ) ]
12
- Id CalendarId { get ; }
12
+ string CalendarId { get ; }
13
13
14
14
[ JsonProperty ( "job_ids" ) ]
15
- IReadOnlyCollection < Id > JobIds { get ; }
15
+ IReadOnlyCollection < string > JobIds { get ; }
16
16
17
17
[ JsonProperty ( "description" ) ]
18
18
string Description { get ; }
@@ -21,10 +21,10 @@ public partial interface IPutCalendarJobResponse : IResponse
21
21
/// <inheritdoc cref="IPutCalendarJobResponse" />
22
22
public class PutCalendarJobResponse : ResponseBase , IPutCalendarJobResponse
23
23
{
24
- public Id CalendarId { get ; internal set ; }
24
+ public string CalendarId { get ; internal set ; }
25
25
26
26
public string Description { get ; internal set ; }
27
27
28
- public IReadOnlyCollection < Id > JobIds { get ; internal set ; } = EmptyReadOnly < Id > . Collection ;
28
+ public IReadOnlyCollection < string > JobIds { get ; internal set ; } = EmptyReadOnly < string > . Collection ;
29
29
}
30
30
}
You can’t perform that action at this time.
0 commit comments