Class AddEvent
This is the data transfer object for creation of a new event.
public class AddEvent
- Inheritance
-
AddEvent
- Inherited Members
- Extension Methods
Constructors
AddEvent()
public AddEvent()
Properties
EventBillingCode
The exam billing code, used in case a new exam need to be created
public string EventBillingCode { get; set; }
Property Value
EventExamFormat
The exam format, used in case a new exam need to be created
public string EventExamFormat { get; set; }
Property Value
EventExamType
The exam type, used in case a new exam need to be created
public string EventExamType { get; set; }
Property Value
EventStart
The date and time (including time zone) for the scheduled start of the event.
public DateTimeOffset EventStart { get; set; }
Property Value
EventVenue
Uniquely identifies the physical location for the venue hosting the event.
public Guid EventVenue { get; set; }
Property Value
RegistrationLimit
The maximum number of candidate registrations permitted in the event.
public int? RegistrationLimit { get; set; }
Property Value
- int?