You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OpenActive.NET/models/BookingService.cs
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,24 +51,31 @@ public override string ToString()
51
51
[JsonConverter(typeof(ValuesConverter))]
52
52
publicnewvirtualstringName{get;set;}
53
53
54
+
/// <summary>
55
+
/// A human and machine-readable certification file that asserts the service's conformance to established standards. The value of this property should be a URL that resolves to a valid and up-to-date OpenActive Test Suite Conformance Certificate for this implementation. Note this property is in EARLY RELEASE AND IS SUBJECT TO CHANGE, as the [Dataset API Discovery specification](https://openactive.io/dataset-api-discovery/EditorsDraft/) evolves.
/// The version of the application, useful for on-premise installations. Note this property is in EARLY RELEASE AND IS SUBJECT TO CHANGE, as the [Dataset API Discovery specification](https://openactive.io/dataset-api-discovery/EditorsDraft/) evolves.
publicoverrideDateTimeValueStartDate{get{returnbase.StartDate;}set{if(value.IsDateOnly)thrownewArgumentOutOfRangeException("StartDate","This property must be set to a DateTimeOffset, including a time");base.StartDate=value;}}
58
61
@@ -65,7 +68,7 @@ public override string ToString()
publicoverrideDateTimeValueEndDate{get{returnbase.EndDate;}set{if(value.IsDateOnly)thrownewArgumentOutOfRangeException("EndDate","This property must be set to a DateTimeOffset, including a time");base.EndDate=value;}}
71
74
@@ -75,7 +78,7 @@ public override string ToString()
75
78
/// <summary>
76
79
/// Relates a child event to a parent event. Properties describing the parent event can be assumed to apply to the child, unless otherwise specified. A parent event might specify a recurring schedule, of which the child event is one specific instance
0 commit comments