Class AddRegistrationLax
This is the data transfer object for lax (i.e., not strict) creation of a new event registration.
public class AddRegistrationLax
- Inheritance
-
AddRegistrationLax
- Inherited Members
- Extension Methods
Constructors
AddRegistrationLax()
public AddRegistrationLax()
Properties
Accommodations
An array of (optional) accommodations.
public GrantRegistrationAccommodation[] Accommodations { get; set; }
Property Value
Assessment
An alphanumeric code that should (in theory) uniquely identify an assessment form.
public string Assessment { get; set; }
Property Value
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
Learner
Uniquely identifies the learner (i.e., user/candidate) registering for the event.
public Guid Learner { get; set; }
Property Value
LearnerRegistrantType
At the time of registration, a learner may be an Apprentice or a Challenger. This is an optional property to indicate the registrant's type when registration is first requested.
public string LearnerRegistrantType { get; set; }